/* Body */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f3f5f9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Form container */
.form-container {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

/* Heading */
.form-container h2 {
    color: #607DA8;
    margin-bottom: 20px;
}

/* Form group */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    color: #607DA8;
    margin-bottom: 5px;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

/* Submit button */
.btn-grad {
    background-image: linear-gradient(to right, #607DA8, #89ABD9);
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-grad:hover {
    background-color: #546b91;
}

/* Forgot password link */
.forgot-password-link,
.register-link {
    margin-top: 20px;
}

.forgot-password-link a,
.register-link a {
    color: #607DA8;
    text-decoration: none;
}

.forgot-password-link a:hover,
.register-link a:hover {
    text-decoration: underline;
}

/* Back link */
.back-link {
    margin-top: 20px;
}

.back-link a {
    display: inline-block;
    color: #ffffff;
    background-color: #607DA8;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.back-link a:hover {
    background-color: #546b91;
}
