.content-body {
    display: flex;
    align-items: center;
    height: 90vh;
}

.card-login {
    background: rgb(45, 143, 255);
    background: linear-gradient(0deg, rgba(169, 147, 247, 0.8) 0%, rgba(54, 81, 255, 1) 50%, rgba(79, 46, 175, 1) 100%);
    color: white;
    width: 500px;
    height: 500px;
    max-width: 500px;
    margin: auto;
    padding: 30px;
    border-radius: 20px 20px 20px 20px;
    box-shadow: 12px 12px #000000;
}

.login-title {
    font-size: 45px;
    font-weight: bold;
}

.user-login-box {
    text-align: center;
}

.user-login-box>* {
    display: inline-block;
}

.user-icon {
    width: 100px;
    height: 100px;
    position: relative;
    border-radius: 50%;
    background-size: contain;
}

.bt-login {
    width: 200px;
    height: 50px;
    border: none;
    border-radius: 30px;
    color: white;
    background-color: rgb(105, 8, 241);
    transition: .5s;
    font-size: 20px;
}

.bt-login:hover {
    background-color: rgb(52, 0, 210);
    scale: 1.1;
}

.bt-log-wrap {
    display: flex;
    justify-content: center;
}

@media  (max-width: 700px) {
    .content-body {
        display: flex;
        align-items: center;
        height: 100vh;
        background: rgb(45, 143, 255);
        background: linear-gradient(0deg, rgba(169, 147, 247, 0.8) 0%, rgba(54, 81, 255, 1) 50%, rgba(79, 46, 175, 1) 100%);
    }

    .card-login {
        height: 100%; 
        width: 100%;
        padding: 30px;
        /* box-shadow: 12px 12px 50px rgba(0, 0, 0, 0.5); */
        box-shadow: none;
        border-radius: 0;
        background: rgba(45, 143, 255, 0);
    }
}