/* ✅✅✅✅✅✅✅✅✅✅✅✅✅✅✅ Web Login Page ✅✅✅✅✅✅✅✅✅✅✅✅✅✅*/
/* Scoped styles to apply only in the login page */
body.login-page {
    background-color: #f5f5f5;  /* Light background color for the login page */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

body.login-page .login-container {
    /* Centering the login container */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('/assets/login_background image.png') no-repeat center center fixed;
    background-size: cover;
}

body.login-page .login-box {
    width: 350px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9); /* Transparent white background for the form */
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

body.login-page .logo-container {
    margin-bottom: 20px;
}

body.login-page .logo-container img {
    border-radius: 20px;
    width: 120px;
    height: auto;
    display: block;
    margin: 0 auto;
}

body.login-page h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

body.login-page .input-group {
    margin-bottom: 20px;
    text-align: left;
}

body.login-page .input-group input {
    width: 95%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

body.login-page .input-group label {
    font-size: 14px;
    color: #666;
    font-weight: bold;
}

body.login-page button {
    width: 100%;
    height: 48px;
    padding: 10px;
    background-color: #009CDE; /* Matching 'Trip' branding */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

body.login-page button:hover {
    background-color: #007BB5; /* Darker blue for hover */
}

body.login-page .forgot-password {
    margin-top: 10px;
    font-size: 14px;
}

body.login-page .forgot-password a {
    color: #007BFF;
    text-decoration: none;
}

body.login-page .forgot-password a:hover {
    text-decoration: underline;
}