.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;

}

.form-box {
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}


.form-box h1 {
    margin-bottom: 10px;
    font-size: 24px;
}

.form-box-input {
    background: #fff;
    padding: 5px 30px 40px 30px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.input-with-icon {
    position: relative;
    margin-bottom: 20px;
}

.input-with-icon i {
    position: absolute;
    top: 12px;
    left: 10px;
    color: #999;
}

.input-with-icon input {
    padding-left: 35px;
    width: 100%;
    border: none;
    border-bottom: 2px solid #ccc;
    background: #f9f9f9;
    height: 40px;
    font-size: 14px;
}

.input-with-icon input:focus {
    background: #fff;
    outline: none;
    border-bottom: 2px solid #007bff;
}

.btn-primary, .btn-secondary {
    display: block;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 10px;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.location {
    margin-top: 20px;
    font-size: 14px;
}

.location a {
    color: #28a745;
    text-decoration: none;
}

.location a:hover {
    text-decoration: underline;
}
