﻿body {
    background: linear-gradient(149deg, #fcfeff 61%, #1976D2 84%,#554be1 101%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    /*    border-radius: 20px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);*/
    overflow: hidden;
}

.login-left {
    padding: 30px;
}

@media (max-width: 768px) {

    .login-left {
        padding: 15px;
    }
}

.login label {
    font-size: 15px;
}

input::placeholder {
    font-size: 13px;
}

.login-right {
    /* background-color: #0d6efd; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .login-right img {
        max-width: 100%;
        height: auto;
    }

.social-login {
    position: absolute;
    height: 100px;
    text-align: center;
    bottom: 0px;
    right: 0px;
    color: #fff;
}


.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
}


.social-login__icon {
    padding: 20px 10px;
    color: #fff;
    text-decoration: none;
    text-shadow: 0px 0px 8px #7875B5;
}

.btn-social {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #6c757d;
}
.bg-gradient-primary {
    background-image: linear-gradient(195deg, #6c42de, #248ff2);
}