* {
  
    font-family: 'Outfit', sans-serif;
    box-sizing: border-box;
}

body{
    background: #131517;
    height: 100vh;
}

.login-page-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1E1F25;
    padding: 25px;
    border-radius: 5px;
    max-width: 400px;
    width: 100%;
    border: 1px solid #35363A;
    padding: 20px 30px;
}
.form-control{
    width: 100%;
    padding: 10px;
    background: #292a32;
    border: 1px solid #43444d;
    transition: all 0.2s;
    border-radius: 5px;
    outline: none;
    color: white;
    font-size: 14px;
    font-weight: 400;
}
.form-check {
    margin-top: 15px;
    color: white;
    font-weight: 500;
    font-size: 13px;
}
.form-check label {
    margin-top: -1px;
    cursor: pointer;
}
.form-check input {
    transform: translateY(1.5px);
    cursor: pointer;
}
.form-control:focus{
    background: #33343d;
    border-color: #53545e;
}
.card-header{
    margin-bottom: 25px;
    text-align: center;
    font-size: 28px;
    font-weight: 400;
    margin: 0;
    color: white;
}
.login-footer{
    display: flex;
    flex-direction: column;
    margin-top: 15px;
}
.button-submit {
    /* max-width: 60px; */
    margin-left: auto;
    margin-right: auto;
    padding: 10px 15px;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: white;
    text-align: center;
    background: #0066FF;
    border-radius: 5px;
    color: white;
    outline: none;
    border: none;
    transition: all 0.2s;
    cursor: pointer;
    margin-top: 15px;
}
.button-submit:hover{
    background: #2e81ff;
}
.login-input-wrapper:not(:first-child){
    margin-top: 15px;
}
.login-input-wrapper label{
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 600;
    color: white;
}
.login-footer .btn.btn-link {
    display: none;
}

.invalid-feedback{
    color:red;
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 600;
}