:root {
    --slider-padding: 5rem;
    --active-card-background: #E2D1E9;
    --active-card-title: #7C3996;
    --card-background: #F5E8FA;
    --card-paragraph: #808080;
    --default-shadow: #00000020 2px 2px 10px;
    --form-title-color: #441258;
}
* , *::after , *::before {
    font-family: 'Okta Neue', sans-serif;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}
html , body {
    margin: 0px;
    padding: 0px;
}

.s-i-section{
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100vh;
}

.s-i-outer{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-image: url(../images/login/sign-in.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.sign-in-inner{
    width: 80%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    
}


.s-i-left{
    width: 50%;
    height: 100%;
    background-color: #ffff;
    border-radius: 15px 0 0 15px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 40px;
    position: relative;
}
.s-i-right{
    width: 50%;
    height: 100%;
    background: #7C3996;
    border-radius: 0 15px 15px 0px;
    box-shadow: 0px 4px 4px #FFFFFF;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 40px;
}
.s-i-detail{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.s-i-detail form{
    width: 100%;
    margin-top: 25px;
}
.s-i-detail label{
    font-size: 18px;
    color: #441258;


}
.s-i-detail input{
    width: 100%;
    background: #E9E9E9;
    border: none;
    border-radius: 5px;
    height: 45px;
    margin-bottom: 15px;
}
.s-i-detail p {
    font-size: 14px;
}
.s-i-detail p a {
    text-decoration: none;
    color: #7C3996;
}
.s-i-btn{
    position: absolute;
    right: 0;
    margin-right: 40px;
    width: 30%;
}
.s-i-btn button{
    width: 100%;
    padding: 10px;
    border: none;
    background: #7C3996;
    border-radius: 5px;
    color: #ffff;
    font-size: 18px;
    cursor: pointer;
}

.s-i-r-btn{
    width: 50%;
    display: flex;
   justify-content: center;
   align-items: center;
    
}
.s-i-r-btn button{
    background-color: #ffff;
    width: 85%;
    border-radius: 5px;
    box-shadow: 0px 4px 4px rgba(68, 18, 88, 0.25); 
    padding: 15px 10px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    color: #441258;
    cursor: pointer;
    
}