* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    min-height: 100vh;
    background: #fff8f0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.location-box {
    width: 420px;
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.location-box h2 {
    color: #7a1717;
    margin-bottom: 10px;
}

.location-box p {
    color: #777;
    margin-bottom: 25px;
}

.location-box label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.location-box input {
    width: 100%;
    padding: 13px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 18px;
    outline: none;
}

.location-box input:focus {
    border-color: #b53a1d;
}

.location-box button {
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 6px;
    background: #7a1717;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.location-box button:hover {
    background: #a32620;
}

.home {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #7a1717;
    text-decoration: none;
}