/* @import url('src\public\style\home.css'); */

.page-container {
    display: flex;
    background-color: #fff;
}

.image-background {
    width: 45%;
    height: 100vh;
    box-shadow: 0px 1px 12px 4px rgb(226, 226, 226);
}

.image-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-container {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-heading {
    font-size: 40px;
    font-weight: 500;
    color: #141414;
}

.login-subheading {
    font-size: 14px;
    color: #676767;
    font-weight: 400;
    margin-top: 0.5rem;
}

.input-container {
    width: 400px;
    margin-top: 1.5rem;
}

.input-container label {
    display: block;
    font-size: 18px;
    color: #1f1f1f;
}

.input-container input {
    display: block;
    padding: 0.8rem 1rem;
    font-size: 14px;
    color: #535353;
    margin-top: 0.5rem;
    border: 1px solid rgb(214, 214, 214);
    border-radius: 6px;
    width: 100%;
}

input::placeholder {
    color: #535353;
}

.registration-details {
    color: #343434;
    font-size: 13px;
    margin-top: 2rem;
}

#loginBtn {
    font-size: 16;
    width: 100%;
    background: var(--gradient);
    color: #fff;
    text-align: center;
    margin-top: 1.5rem;
    border-radius: 50px;
    border: none;
    padding: 0.6rem 0;
    cursor: pointer;
}

.company-text {
    position: fixed;
    font-weight: 600;
    bottom: 10px;
    right: 15px;
    font-size: 15px;
}



#error-msg {
    font-size: 15px;
    margin-top: 0.5rem;
    color: #cc0505;
}

#error-msg p {
    animation: txt-appear ease 0.2s;
    display: inline-block;
}

@keyframes txt-appear {
    0% {
        transform: scale(0.7);
    }
    100% {
        transform: scale(1);
    }
}


@media screen and (width <= 800px) {
    .image-background {
        display: none;
    }

    .login-container {
        padding: 4rem 1.5rem 0 1.5rem;
    }

    .input-container {
        width: auto;
    }
}