/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

/* Body setup */
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #f5f5f5;
}

/* Main container with background image */
.main-container {
    width: 100%;
    min-height: 100vh;
    background: url('login_baground_image.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Login box */
.container {
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    box-shadow: 0px 16px 32px -8px rgba(12, 12, 13, 0.4);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

.input-container {
    text-align: left;
    margin-bottom: 20px;
    width: 100%;
}

label {
    font-size: 16px;
    color: #0C1421;
}

input {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border: 1px solid #D4D7E3;
    border-radius: 12px;
    background: #F7FBFF;
}

.forgot-password {
    text-align: right;
    display: block;
    font-size: 14px;
    color: #74B24A;
    text-decoration: none;
    margin-bottom: 20px;
}

.btn {
    width: 100%;
    padding: 15px;
    background: #74B24A;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
}

/* Footer */
.footer {
    width: 100%;
    background: #74B24A;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    position: fixed;
    bottom: 0;
}
.error-message {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
    text-align: center;
    display: none; /* Hidden by default */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) { /* Tablets & Small Screens */
    .container {
        width: 90%;
        padding: 30px;
    }
}

@media (max-width: 480px) { /* Mobile Phones */
    .container {
        width: 95%;
        padding: 25px;
    }

    .logo {
        width: 120px;
    }

    .btn {
        padding: 12px;
        font-size: 16px;
    }

    .footer {
        font-size: 12px;
    }
}
