/* Forget Password Form Styling */

form {
    max-width: 400px;
    margin: 30px auto;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-group input[type="email"],
.form-group input[type="text"],
.form-group input[type="password"] {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input[type="email"]:focus,
.form-group input[type="text"]:focus,
.form-group input[type="password"]:focus {
    outline: none;
    border-color: #3366ff;
    box-shadow: 0 0 0 3px rgba(51, 102, 255, 0.14);
}

.form-group input::placeholder {
    color: #999;
}

/* Button Styling */
button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #3366ff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

button[type="submit"]:hover {
    background-color: #0052cc;
}

button[type="submit"]:active {
    transform: scale(0.98);
}

/* Error and Success Messages */
.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
}

.alert-danger {
    background-color: #ffe0e0;
    color: #d32f2f;
    border-left: 4px solid #d32f2f;
}

.alert-success {
    background-color: #e0f7e0;
    color: #388e3c;
    border-left: 4px solid #388e3c;
}

.alert p {
    margin: 0;
}

/* Links */
.back-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.back-link a {
    color: #3366ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-link a:hover {
    text-decoration: underline;
    color: #0052cc;
}

/* Heading Styling */
h1 {
    text-align: center;
    color: #222;
    margin-bottom: 8px;
    font-size: 28px;
    font-weight: 600;
}

.page-description {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Logo Styling */
.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    display: inline-block;
}
