﻿body {
    background: #333;
    color: white;
}


.login {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 300px;
    height: auto;
    padding: 15px;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, .1);
    border-radius: 7px;
}
    .login .logo {
        position: relative;
        width: 50px;
        height: 50px;
        padding: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .07);
        margin: auto;
        margin-bottom: 15px;
    }
        .login .logo .loading {
            display: none;
            width: 50px;
            height: 50px;
            position: absolute;
            top: 0;
            left: 0;
            border-radius: 50%;
            border: 4px solid rgba(255, 255, 255, 0.1);
            border-top: 4px #31bafe solid;
            animation: radial 1.3s infinite linear;
        }
        .login .logo img{
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    .login .wrapper-input{
        margin-bottom: 15px;
    }
        .login .wrapper-input input {
            background-color: rgba(255, 255, 255, .1) !important;
            color: white !important;
            margin-bottom: 0 !important;
        }
    .login .field-validation-error {
        color: #ffd800;
        font-weight: 500;
        font-size: 13px;
        padding-left: 10px;
    }
    .login .button {
        width: 100%;
        height: 35px;
        border-radius: 7px;
        color: white;
        border: 0;
        outline: none;
        font-size: 13px;
        font-weight: 500;
        background: #007df0;
        cursor: pointer;
    }
.validation-summary-errors ul {
    margin-top: 15px;
}
    .validation-summary-errors ul li {
        background: rgba(255, 255, 255, .05);
        border-radius: 7px;
        padding: 0 10px;
        height: 35px;
        line-height: 35px;
        font-size: 13px;
        font-weight: 500;
        color: #ff2626;
        text-align: center;
        width: max-content;
        margin: auto;
        cursor: pointer;
        user-select: none;
    }
@keyframes radial {
    100% {
        transform: rotate(360deg);
    }
}