@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Roboto+Slab:wght@300&display=swap');
* {
    margin: 0;
    padding: 0;
}
body {
    background-color: #6377fc;
}

::selection {
    background-color: #6377fc;
    color: #ffffff;
}

body::-webkit-scrollbar {
    width: 11px;
}
body::-webkit-scrollbar-track {
    background-color: #3f3f3f;
}
body::-webkit-scrollbar-thumb {
    background-color: #6377fc;
}
html,
body {
   overflow-x: hidden;
}



.sp-login-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sp-login {
    width: 65%;
}
.sp-login-img img {
    width: 100%;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}
.sp-login-form {
    background-color: #ffffff;
    padding: 24px;
    height: 100%;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}
.sp-login-form .logo {
    width: 120px;
    margin-bottom: 20px;
}
.sp-login-form .sp-form .num {
    padding: 6px 10px;
    background-color: #dcdcdc;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    font-size: 15px;
    color: #454545 !important;
    font-weight: 600;
    border: 1px solid #9c9c9c;
    border-right: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sp-login-form .sp-form .num img {
    width: 18px;
    margin-right: 10px;
}
.sp-login-form .sp-form label {
    font-size: 14px !important;
    color: #808080;
}
.sp-login-form label span {
   color: #ff0000 !important;
font-size: 17px !important;
}
.sp-login-form .sp-forgot-pass {
   display: flex;
   justify-content: space-between;
}
.sp-login-form .sp-checkbox {
   display: flex;
}
input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: #6377fc;
    cursor: pointer;
}
.sp-login-form .sp-checkbox span {
   color: #555555 !important;
   font-size: 15px;
    font-size: 13px !important;
}
.sp-login-form a {
   color: #6377fc !important;
   text-decoration: none;
    font-size: 13px !important;
}
.sp-login-form .sp-form input {
    color: #797979 !important;
    font-size: 14px;
    border: 1px solid #9c9c9c;
    width: 100%;
    padding: 8px;
}
.sp-login-form .sp-form input::placeholder {
    color: #d3d3d3 !important;
    font-size: 14px;
}
.sp-login-form .form-control {
    padding: 12px;
    border: 1px solid #868686;
}
.sp-login-form .form-control:focus {
    box-shadow: none !important;
    border: 1px solid #6377fc;
}
.sp-login-form .signup-text {
    color: #555555;
    margin-top: 30px;
    font-size: 14px;
}
.sp-login-form .signup-text a {
    color: #6377fc;
    font-size: 14px;
}
.main-btn {
    padding: 8px 25px;
    width: 100%;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border: none;
    color: #ffffff;
    background: linear-gradient(to right, #00abf0 50%, #6377fc 50%);
    background-size: 200%;
    background-position: left;
    transition: background-position 0.4s;
    border-radius: 5px;
    text-transform: uppercase;
}
.main-btn:hover {
    background-position: right;
    /* border: 1px solid #40ff00; */
    color: #ffffff;
}


@media(max-width: 1200px) {
    .sp-login {
        width: 80%;
    }
}



@media(max-width: 980px) {
    .sp-login-container {
        height: 100%;
        margin-top: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .sp-login {
        width: 80%;
    }
    .sp-login-form {
        padding: 12px 15px;
        border-top-right-radius: 12px;
        border-bottom-right-radius: 12px;
    }
    .sp-login-form .logo {
        width: 80px;
        margin-bottom: 10px;
    }
    .sp-login-form .sp-form .num {
        font-size: 15px;
    }
    .sp-login-form .sp-form input {
        font-size: 12px;
        padding: auto;
    }
    .sp-login-form .sp-form input::placeholder {
        font-size: 14px;
    }
    .sp-login-form .form-control {
        padding: 10px;
    }
    .sp-login-form .signup-text {
        margin-top: 10px;
        font-size: 12px;
    }
    .main-btn {
        font-size: 12px;
        border-radius: 5px;
    }
    .sp-login-form .sp-form label {
        font-size: 14px !important;
    }
}
    
@media(max-width: 769px) {
    .sp-login-form .sp-form input {
        font-size: 15px;
        padding: 10px;
    }
    .sp-login-img img {
        display: none;
    }
    .sp-login-form .logo {
        width: 120px;
        margin-bottom: 20px;
    }
    .sp-login {
        width: 90%;
    }
    .sp-login-form {
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px 10px;
    }
    .sp-login-form .signup-text {
        margin-top: 25px;
    }
}