


body {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    font-family: 'Arial', sans-serif;
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
}

.form-title {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: block;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: none;
    outline: none;
    font-size: 1rem;
}

.input-group input:focus {
    box-shadow: 0 0 5px rgba(106, 112, 252, 0.8);
    border: 2px solid #6a70fc;
}

.btn {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: none;
    border-radius: 25px;
    background: #6a70fc;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.btn:hover {
    background: #4c52d2;
}

.options {
    text-align: center;
    margin-top: 20px;
}

.options a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
    transition: color 0.3s ease-in-out;
}

.options a:hover {
    color: #d1d1ff;
}

.footer {
    margin-top: 20px;
    font-size: 0.9rem;
    text-align: center;
}
