* {
    margin: 0;
    padding: 0;
}
body {
    background-color: #eaedf1;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.col {
    flex-direction: column;
}
.row {
    flex-direction: row;
}
.title {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
    font-size: 32px;
}
.text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 100;
    font-size: 22px;
}
.transition {
    transition: 0.2s 0s linear;
}
/* --------------------------------------------------------------------------- */
.full-size {
    width: 100%;
    height: 100vh;
}
.login {
    width: 75%;
    height: 700px;
    background-color: white;
    box-shadow: 0 7px 25px #1234564b;
    border-radius: 15px;
}

.login-s {
    width: 50%;
    height: 100%;
    gap: 30px;
}
.login-box {
    gap: 15px;
}
.input {
    width: 300px;
    padding: 10px 50px;
    background-color: #F0EDFFCC;
    outline: none;
    border: none;
    border-radius: 8px;
}
.input::placeholder {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 500;
    color: black;
}
.label {
    position: relative;
}
.label svg {
    width: 40px;
    height: 30px;
    position: absolute;
    top: 20%;
    left: 3%;
}

.login-bottom {
    padding: 15px 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: white;
    background: linear-gradient(99.78deg, #9181F4 -5.85%, #5038ED 109.55%);
    border: none;
    border-radius: 15px;
    cursor: pointer;
}
.login-bottom:hover {
    background-image: linear-gradient(45deg, #5d47ee, #8a79f4);
}
.login-bottom:active {
    scale: 0.95;
}

.lwo {
    position: relative;
}
.lwo hr{
    width: 300px;
    position: absolute;
    opacity: 0.4;
}
.lwo .text {
    background-color: white;
    position: relative;
}
.lwo-b {
    width: 300px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 300;
    font-size: 16px;
    background-color: white;
    border: #eee 1px solid;
    border-radius: 15px;
    cursor: pointer;
    gap: 5px;
}
.lwo-b:active {
    scale: 0.95;
}
/* --------------------------------------------------------------------------- */
.login-i {
    width: 50%;
    height: 100%;
    position: relative;
    background-color: #7360f0;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}
.login-i::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;  
    opacity: .4; 
    background: url(../Background/texture.png);
}
.box {
    width: 350px;
    height: 500px;
    position: relative;
    padding: 20px;
    color: white;
    background: #ffffff38;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px #0000001a;
    border: 1px solid #ffffff5c;
    border-radius: 25px;
}
.img-1 {
    width: 150%;
    position: absolute;
    left: 0;
    bottom: 0;
    pointer-events: none;
}
.img-2 {
    width: 70px;
    position: absolute;
    top: 60%;
    left: -10%;
    padding: 10px;
    background-color: #fff;
    border-radius: 50%;
    pointer-events: none;
}
/* --------------------------------------------------------------------------- */
@media (min-width: 961px) and (max-width: 1366px) {
    .login {
        width: 95%;
    }
    .img-1 {
        width: 125%;
    }
    .img-2 {
        width: 50px;
    }
}
@media (max-width: 960px) {
    .login {
        width: 90%;
    }
    .login-s {
        width: 100%;
    }
    .login-box {
        width: 90%;
    }
    .input {
        width: 300px;
    }
    .login-i {
        display: none;
    }
}
@media (max-width: 500px) {
    .login {
        width: 80%;
        height: auto;
        padding: 20px;
    }
    .input {
        width: 190px;
    }
    .lwo hr {
        width: 250px;
    }
    .lwo-b {
        width: 250px;
    }
}