body {
    font-family: Arial, sans-serif;
    background: url('/images/banner_main.png') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    height: 100vh;
    color: #fff;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    padding: 20px;
}

.login-form {
    background-color: rgba(255, 255, 255, 255); 
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

.login-header {
    margin-bottom: 25px;
}

.fs30 {
    font-size: 30px;
    font-weight: bold;
}

.themecolor {
    color: #1cabb0;  
    text-align: center;
}

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

label {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

input.form-control {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input.form-control:focus {
    border-color: #1cabb0;
    outline: none;
}

.submit-button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    margin-top: 25px;
    background-color: #1cabb0;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.submit-button:hover {
    background-color: #1cabb0;
}

.alert-danger {
    color: #dc3545;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert-danger ul {
    margin: 0;
    padding: 0;
}

.alert-danger li {
    list-style-type: none;
}

.forgot-pass-link {
    color: #1cabb0;
    text-decoration: none;
    font-size: 14px;
}

.forgot-pass-link:hover {
    text-decoration: underline;
}

@media screen and (max-width: 767px) {
    .login-form {
        padding: 20px;
        width: 100%;
        max-width: 90%;
    }

    .fs30 {
        font-size: 24px;
    }

    .submit-button {
        font-size: 14px;
    }
}
