﻿body {
    width: 99%;
    height: 99%;
    background-color: black !important;
    font-family: RobotoRegular, sans-serif !important;
}

.login-container { 
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 25px;
    height: 55%;
    width: 30%;
    border: 1px solid black;
    background-color: white;
    border-radius: 5px;
}

.login-image {
    height: 50px;
}

.login-title {
    text-align: center;
    font-size: 35px;
    margin-top: 25px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: "UnibetPro", sans-serif !important;
}

.login-bttn {
    background-color: #FFE71F !important;
    border-radius: 5px;
    text-transform: uppercase;
    height: 50px;
    cursor: pointer;
    text-align: center;
    border: none;
    width: 100%;
    padding: 10px;
    font-size: 22px;
    font-weight: 500;
    font-family: "UnibetPro", sans-serif !important;
}

.login-group { 
    padding: 10px;
}

.login-label {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: rgb(17, 17, 17);
    font-family: RobotoBold, sans-serif !important;
}

.form-input { 
    margin-top: -15px;
}

.form-control {
    border: 1px solid black !important;
    border-radius: 0px !important;
    height: 44px !important;
}

.login-error-container { 
    padding: 8px;
    font-weight: 400;
    line-height: 16px;
    font-size: 12px;
    background-color: rgb(153, 18, 22);
    border-radius: 5px;
}

.login-error { 
    color: white;
}


@media only screen and (max-width: 600px) {
    .login-container {
        position: fixed;
        padding: 25px;
        height: 100%;
        width: 100%;
        border: 1px solid black;
        background-color: white;
        border-radius: 5px;
        border: 10px solid #1e1f3e;
    }
}

@media (max-width: 768px) {
    .login-container {
        width: 90%;
        height: auto;
        top: 10%;
        transform: translate(-50%, 0);
    }
}