* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Source Sans Pro, sans-serif;
}

body {
    overflow: hidden;
}

.image {
    width: 100%;
    transition: transform 1.1s ease-in-out;
    transition-delay: 0.4s;
}

.logincontainer {
    position: relative;
    display: flex;
    justify-content: space-between;
    background: linear-gradient(-45deg, #9999FF 30%, #6666FF 70%);
    min-height: 100vh;
    overflow: hidden;
}

.logincontainer:before {
    content: "";
    position: absolute;
    height: 100vw;
    width: 100vw;
    top: 0;
    right: 48%;
    transform: translateY(-50%);
    background-color: #9999FF;
    box-shadow: 0 13px 14px rgba(102,102,255,1), inset 0 -2px 5px rgba(102,102,255,1), inset 0 2px 2px rgba(255,255,255,0.5);
    background-size: cover;
    background-repeat: repeat;
    background-position: center center;
    transition: 1.8s ease-in-out;
    border-radius: 50%;
    z-index: 1;
}

.logincontainer .left-panel{
    display: flex;
    max-width: 50%;
    z-index: 6;
}

.logincontainer .left-panel .content{
    display: block;
    align-content: center;
    text-align-last: center;
    font-size: 1.25rem;
    padding: 1.25rem;
    color: #FFF;
}

.logincontainer .left-panel img{
    width: 30rem;
}

.logincontainer .left-panel p{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.logincontainer .right-panel{
    display: flex;
    max-width: 50%;
    max-height: 100vh;
    overflow-x: auto;
}

.logincontainer .right-panel .content{
    display: block;
    align-content: center;
    /* text-align-last: center; */
    padding: 1.25rem 2rem;
}

.logincontainer .right-panel .content .sign-in-form{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.2s 0.7s;
    overflow: hidden;
    padding: 1.5rem 2rem;
    border-radius: 1em;
    background: linear-gradient(-45deg, #F0F0F0 30%, #CCCCCC 70%);
    box-shadow: 0 13px 14px rgba(102,102,255,1), inset 0 -2px 5px rgba(102,102,255,1), inset 0 2px 2px rgba(255,255,255,0.5);
}

.logincontainer .right-panel .content .title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #444;
}

.logincontainer .right-panel .content .input-field {
    width: 100%;
    background-color: #FFF;
    margin: 10px 0;
    height: 55px;
    border-radius: .75rem;
    display: flex;
    flex-wrap: wrap;
    padding: 0 0.4rem;
    position: relative;
}

.logincontainer .right-panel .content .input-field i {
    display: flex;
    align-items: center;
    text-align: center;
    line-height: 2.5;
    color: #acacac;
    transition: 0.5s;
    font-size: 1.1rem;
    padding: 0 15px;
}

.logincontainer .right-panel .content .input-field input {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    background: none;
    outline: none;
    border: none;
    line-height: 1;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    border-radius: 1em;
}

.logincontainer .right-panel .content .input-field input::placeholder {
    color: #aaa;
    font-weight: 500;
}

.logincontainer .right-panel .content .input-field select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    background: none;
    outline: none;
    border: none;
    line-height: 1;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    border-radius: 0 30px 30px 0;
}

.logincontainer .right-panel .content .input-field select::placeholder {
    color: #aaa;
    font-weight: 500;
}

.logincontainer .right-panel .content .sign-in-form .group-btn {
    width: 100%;
    display: flex;
}
.logincontainer .right-panel .content .sign-in-form .group-btn .btn {
    display: flex;
    flex : 1 1 auto;
    gap: 5px;
    justify-content: center;
    align-items: center;
    background: linear-gradient(-45deg, #9999FF 30%, #6666FF 70%);
    border: 2px solid #fff;
    border-radius: .75rem;
    font-weight: 600;
    font-size: 0.8rem;
    color: #FFF;
    line-height: 2.5;
    margin: 0px;
    box-shadow: 3px 3px 3px rgba(51, 51, 51, 0.2);
}

.social-media {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1px;
    font-size: .85rem;
}

.social-media .social-icon {
    display: flex;
    justify-content: center;
    gap: 10px;
    height: 1rem;
    width: auto;
    height: 2rem;
    margin: 10px;
}

.social-media a {
    line-height: 1.5;
    color: #333;
    font-weight: 100;
    text-align: center;
}

.social-media:hover a {
    color: #003399;
    border-color: #003399;
    cursor: pointer;
}

.social-media .social-title {
    line-height: 1.5;
    color: #333;
    font-weight: 600;
}

.social-media .social-icon img {
    position: relative;
    height: 100%;
    width: auto;
}

.app-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.app-address {
    font-size: 1rem;
    font-weight: 400;
}


@media (max-width: 992px) {
    .logincontainer:before {
        transform: translateX(-38%);
        top: -58%;
        right: 15%;
        transition: 2s ease-in-out;
    }

    .logincontainer .left-panel .content{
        padding-right: 40px;
    }

    .logincontainer .left-panel img{
        width: 20rem;
    }
    
    .logincontainer .left-panel .app-title {
        font-size: 1rem;
    }

    .logincontainer .left-panel .app-address {
        font-size: .7rem;
    }
}

@media (max-width: 768px) {
    .logincontainer:before {
        transform: translateX(-38%);
        top: -58%;
        right: 15%;
        transition: 2s ease-in-out;
    }

    .logincontainer .left-panel .content{
        padding-right: 40px;
    }

    .logincontainer .left-panel img{
        width: 20rem;
    }
    
    .logincontainer .left-panel .app-title {
        font-size: 1rem;
    }

    .logincontainer .left-panel .app-address {
        font-size: .7rem;
    }
}

@media (max-width: 576px) {
    .logincontainer {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .logincontainer:before {
        width: 200vw;
        height: 200vw;
        top: -60%;
        left: 50%;
        transform: translateX(-50%);
        transition: 2s ease-in-out;
    }

    .logincontainer .left-panel {
        max-width: 100vw;
    }

    .logincontainer .left-panel .content{
        padding-right: 40px;
    }

    .logincontainer .left-panel img{
        width: 20rem;
    }
    
    .logincontainer .left-panel .app-title {
        font-size: 1rem;
    }

    .logincontainer .left-panel .app-address {
        font-size: .7rem;
    }

    .logincontainer .right-panel {
        max-width: 100vw;
    }
}