/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #66af3f, #0b94d3);
    /*    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;*/
    height: 1080px;

    overflow-y:hidden;
}

.login-container {
    background: #fff;
    color: #333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    position: relative;
    transform: translate(0px, 180px);
}

.login-header {
    text-align: center;
    margin-bottom: 20px;
}

.login-header h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.login-header p {
    font-size: 14px;
    color: #666;
}

.login-header img {
    width: 70px;
    /* height: 80px; */
    /* border-radius: 50%; */
    /* margin-bottom: 15px; */
}

.login-form .form-group {
    margin-bottom: 15px;
}

.login-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.login-form input {
    width: 94%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.login-form .error-message {
    color: red;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.login-button {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #66af3f, #0b94d3);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}


    .login-button:hover {
        background: linear-gradient(135deg, #0b94d3, #66af3f);
    }

.additional-options {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.additional-options a {
    color: #6a11cb;
    text-decoration: none;
    font-weight: bold;
}

.additional-options a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 600px) {
    .login-container {
        padding: 20px;
    }

    .login-header h1 {
        font-size: 20px;
    }

    .login-header p {
        font-size: 12px;
    }

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

    .additional-options {
        font-size: 12px;
    }
}



@media (max-width: 768px) {
    .login-container {
        background: #fff;
        color: #333;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        position: relative;
        transform: translate(-2px, 180px);
    }

}


    .text-black2 {
        color: #055caf !important;
        font-weight: 600;
        font-size: 14px !important;
    }

    .Designed {
        text-align: center
    }
