/* Global styles to match landing page */
/* body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(145deg, #ff8a00, #e52e71); /* Gradient to match landing page 
    font-family: 'Arial', sans-serif; /* Same font as landing page 
} */
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Akaya+Kanadaka&display=swap');

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: url('/static/media/heroimage.jpeg') no-repeat center center/cover;
    font-family: 'Akaya Kanadaka', sans-serif; /* Use only Akaya Kanadaka for testing */
}


.container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Softer shadow for a cleaner look */
    max-width: 400px;
    width: 100%;
    text-align: center;
}

h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border-radius: 8px; /* More rounded corners to match the landing page button style */
    border: 1px solid #ddd;
    font-size: 16px;
}

.form-control:focus {
    border-color: #6a11cb; /* Consistent border color on focus */
    outline: none;
}

.btn-custom {
    background-color: #43131d; /* Maroon color from the landing page buttons */
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 50px; /* Rounded button edges to match the landing page buttons */
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.btn-custom:hover {
    background-color: #f29b40; /* Hover effect to match landing page button hover */
    transform: translateY(-3px); /* Button lift effect on hover */
}

/* Logo Styling */
.logo {
    display: block;
    margin: 0 auto 20px;
    max-width: 180px; /* Adjusted logo size */
    height: auto;
}

.forgot-password-link {
    font-size: 0.9rem;
    color: #007bff;
    text-decoration: none;
}

.forgot-password-link:hover {
    text-decoration: underline;
}
