body{
    font-family: roboto;
}

.circle-gradient{
    width: 100%;
    height: 100vh;
    position: absolute;
    left: -246px;
    top: -50px;
    border-radius: 50%;
    background-color: rgba(116, 196, 228, 0.3);
    box-shadow: 0px 0 50px 40px rgba(116, 196, 228, 0.3);
}
.background-gradient{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 0px;
    top: 0px;
    background-image: url(/assets/login-main-bg.png);
    background-repeat: no-repeat;
    filter: grayscale(100%);
    background-size: 100% 675px;
}
.copy-rights{
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.76px;
    margin-bottom: 13px;
    color: #606060;
}
.login-container{
    top: 9%;
    left: 10%;
    width: 80%;
    height: 80vh;
    box-shadow: 5px 16px 20px rgba(0, 0, 0, 0.2);
    border-radius: 30px;
}
.login-form-container{
    height: calc(100% - 140px);
}
.sign-btn-section{
    width: auto;
    height: 50px;
}
.sign-in-btn{
    height: 100%;
    background-color: #74C4E4;
    font-size: 13px;
    border-radius: 25px;
    text-align: center;
    letter-spacing: 2.35846px;
    color: #ffffff;
    outline: none;
}
.sign-in-btn:hover{
    background-color: #3f9fed;
    color: white;
}
.sign-in-btn:active{
    background-color: #3f9fed !important;
    color: white !important;
}
.sign-in-header{
    width: 96%;
    margin-bottom: 10%;
}
.sign-in-header span{
    font-weight: 600;
    font-size: 30px;
    line-height: 34px;
}
.left-side{
    width: 70%;
}
.right-side{
    border-radius: 0px 30px 30px 0px;
    width: 55%;
    height: 100%;
    background: linear-gradient(153.2deg, #358ED7 53.53%, #CCDC54 115.48%);
}
.floating-laptop-container{
    top: 6%;
    right: 30%;
    height: 80%;
}
.floating-laptop-container img{
    width: 80%;
}
.login-info-container{
    width: 80%;
    height: 80%;
    padding: 0px 0px;
    position: relative;
    top: 6%;
    left: 11%;
    color: #ffffff;
}
.company-name{
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 31px;
    text-transform: uppercase;
    color: #FFFFFF;
}
.welcome-msg{
    font-style: normal;
    font-weight: bold;
    font-size: 27px;
    line-height: 31px;
    color: #FFFFFF;
}
.welcome-desc{
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: 0.05em;
    height: 80px;
    padding: 10px 0px;
}
.sphere-logo-container img{
    position: absolute;
    bottom: -71px;
    right: 6px;
    width: 25%;
}

@media (max-width: 599px) {
    .login-container {
        top: 5%;
        left: 5%;
        width: 90%;
    }

    .left-side {
        width: 100%;
    }

    .right-side {
        display: none;
        width: 0;
    }

    .sign-btn-section {
        width: 100%;
    }

    .sign-in-btn {
        width: 100%;
    }

    .sign-in-header span {
        font-size: 24px;
    }

    .floating-laptop-container {
        display: none;
    }
    .floating-laptop-container img{
        display: none;
    }

    .login-info-container {
        display: none;
    }

    .sphere-logo-container {
        display: none;
    }

    .background-gradient {
        background-size: cover;
    }

}
