﻿body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    /*background: linear-gradient(135deg, #00c6ff, #0072ff);*/ /*Sky blue to ocean blue */
    background: linear-gradient(135deg, #4a00e0, #8e2de2); /* Purple blend */
    /*background: linear-gradient(135deg, #f2994a, #f2c94c);*/ /* Orange to light yellow */
    /*background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);*/ /* Dark to teal */
    /* background: linear-gradient(135deg, #1e333c, #466772, #324b56);*/
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-wrapper {
    display: flex;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 700px;
    max-width: 100%;
}

.login-image {
    background-color: #e9f4fb;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    padding: 40px;
}

.login-form {
    padding: 60px 40px;
    width: 50%;
}

    .login-form h3 {
        font-weight: 500;
        color: #333;
        margin-bottom: 30px;
    }

.form-control {
    padding: 11px 16px;
    font-size: 13px;
    border-radius: 0px;
    border: 1px solid #ccc;
}

.btn-login {
    background-color: #333;
    color: white;
    padding: 11px;
    font-weight: bold;
    border: none;
    /* border-radius: 30px; */
    width: 100%;
    transition: 0.3s ease-in-out;
}

    .btn-login:hover {
        background-color: #555;
    }

.login-footer {
    margin-top: 15px;
    font-size: 0.9rem;
    text-align: center;
}

    .login-footer a {
        color: #007bff;
        text-decoration: none;
    }

        .login-footer a:hover {
            text-decoration: underline;
        }

.logo-text {
    color: #ff5722;
    font-weight: bold;
    font-size: 32px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .login-wrapper {
        flex-direction: column;
        width: 90%;
    }

    .login-image,
    .login-form {
        width: 100%;
        padding: 30px;
    }
}
