﻿.inner-body {
    background: #8c96a4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

    .inner-body .login-container {
        width: 90%;
        height: 90vh;
        border-radius: 35px;
        display: flex;
    }

        .inner-body .login-container .left {
            width: 40%;
            height: 100%;
            border-radius: 35px 0 0 35px;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 1px solid #6f95c0;
            background: #ffffff;
            display: flex;
            flex-direction: column;
        }

        .inner-body .login-container .right {
            width: 60%;
            height: 100%;
            border-radius: 0 35px 35px 0;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #2b3e54;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

.left-container {
    width: 80%;
}

.login-heading {
    font-size: 2.5rem;
    color: rgb(78, 78, 78);
    font-weight: 800;
    margin: 0;
    margin-bottom: 2rem;
}

.validation-box {
    padding: 0.5rem;
    text-align: center;
    background: #f9b3b3;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #4d545a;
}

.input-container {
    position: relative;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

    .input-container input {
        width: 100%;
        padding: 0.5rem 0.25rem;
        border: 0;
        border-bottom: 3px solid #abb7c5;
        font-size: 1rem;
        outline: none;
        transition: border 0.3s ease, box-shadow 0.3s ease;
        margin-bottom: 0.25rem;
    }

        .input-container input::placeholder {
            color: #a9a9a9;
        }

        .input-container input:focus {
            border-bottom: 3px solid #4d545a;
        }

.login-form {
    margin-bottom: 2rem;
}

.login-button {
    width: 100%;
    padding: 0.75rem;
    margin-top: 1rem;
    background: #6385ab;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

    .login-button:hover {
        background: #2b3e54;
    }

.rights {
    font-size: 0.9rem;
    color: #737373;
}

.index-link {
    color: #678fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
}

    .index-link:hover {
        color: #425fae;
    }

.logo {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #3a5778;
    letter-spacing: 0.15rem;
    font-family: Verdana, sans-serif;
}

    .logo span {
        font-weight: 400;
        letter-spacing: 0;
        color: #577290;
    }

.login-element {
    width: 70%;
}

.input-container .input-validation {
    color: red;
    font-size: 0.75rem;
    display: none;
}

@media (min-width: 1850px) {
    .login-body .login-container {
        width: 75%;
        height: 80vh;
    }
}

@media (max-width: 1024px) {
    .login-heading {
        font-size: 2rem;
    }

    .company-logo {
        width: 5rem;
    }

    .login-body .login-container .left {
        width: 55%;
    }

    .login-body .login-container .right {
        width: 45%;
    }
}

@media (max-width: 750px) {
    .login-heading {
        text-align: center;
    }

    .company-logo {
        width: 7rem;
    }

    .login-body .login-container .left {
        width: 100%;
        border-radius: 35px;
    }

        .login-body .login-container .left .left-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

    .left-container {
        width: 100%;
    }

    .login-body .login-container .right {
        display: none;
    }

    .login-form {
        width: 80%;
    }

    .rights {
        font-size: 0.75rem;
    }
}
