@import url(theme-root.css);

/*
Developer:      Muhammad Salam
Developer URL:  https://www.linkedin.com/in/salamaslamofficial/
Company:        ICTechnology, Australia
Company URL:    ictechnology.com.au
Descriptipon:   This file contains all styling properties for the Authentication and Authorization Views.
*/

.page-container{
    display: flex;
    justify-content: flex-start;
}

.caption-col, .form-col{
    min-height: 100vh;
}

.form-col{
    width: 60%;
}

.caption-col{
    width: 40%;
    background: url(../images/fd6d832585090a75d582bfbeeff9126e.webp);
    background-size: cover !important;
    background-position: center !important;
}
.sign-in-caption-col{
    background: url(../images/f89bbe588ca449afa7c212c55077a204.webp);
}
.caption-col{
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 54px;
}
.quote-icon{
    font-size: 88px;
    margin-bottom: -25px !important;
    padding-left: 2px;
}
.form-container{
    width: 440px;
    max-width: 440px;
}
.form-big-title{
    font-size: 48px;
    font-weight: 500;
    margin-top: 60px;
    color: var(--primary-text);
    margin-bottom: 20px;
}
.form-inputs{
    border-radius: 12px;
    padding: 20px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
}
.form-submit-btn{
    padding: 18px 30px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    border-radius: 50px;
    background: #E5E5E5;
    color: var(--normal-text);
}
.form-submit-btn:hover{
    background:var(--prominent-bg);
}
.form-instruction-bar{
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.form-instruction-bar a{
    color: var(--link-text);
    text-decoration: none;
}

 /* Media query for smaller screens (e.g., tablets) */
 @media only screen and (max-width: 768px) {
    .page-container{
        display: block;
    }
    .page-container div{
        width: 100%;
    }
    .caption-col, .form-col{
        min-height: 400px;
        height: auto;
        
    }
    .form-col{
        min-height: 100vh;
    }
    .form-inputs{
        font-size: 16px;
        padding: 20px;
    }
    .form-submit-btn{
        padding: 14px 20px;
        font-size: 16px;
    }
    .captoon-div{
        bottom: -45vh !important;
        padding-left: 35px !important;
        margin: 0 !important;

    }
    
}
  
/* Media query for even smaller screens (e.g., smartphones) */
@media only screen and (max-width: 480px) {
    .captoon-div{
        bottom: -47vh !important;
        font-size: 40px !important;
    }
    .form-submit-btn{
        padding: 10px 20px;
        font-size: 14px;
        margin-top: 25px !important;
    }
}