﻿@charset "utf-8";

.signin-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #252A30 url("../../Scripts/images/login_background.png") center center no-repeat;
    background-size: cover; 
    font-size: 1rem;
}

.signin-form {
    width: 100%;
    max-width: 420px;
    max-height: 600px;
    padding: 3rem 2.5rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    position: relative;
    /* background:#303843; */
    background: #383e47;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 1rem;
}
.signin-form label {
    color: #ffffff;
    line-height: 1;
}
.signin-form .form-control:focus,  .signin-form .btn:focus {
        border-color: #c5a085;
        box-shadow: 0 0 0 0.2rem rgba(195, 160, 130, 0.25);
}

.signin-header {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.signin-header .img_logo {
    display: block;
    width: 100%;
    margin: 0 auto .5rem;
}

.signin-header .brand-title {
    font-size: 1.5rem;
}

.signin-body {
    margin-bottom: 2rem;
    padding: .5rem 0;
}
.signin-body .form-control {
    padding: .625rem 1rem;
    height: auto;
    margin-bottom: 4px;
}
.signin-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: .75rem;
}
.signin-footer>.btn:not(:last-child) {
    margin-right: .375rem;
}
.btn-signin {
    margin: 0 !important;
    background: #937A69 ;
    color: #ffffff;
}

.btn-signin:hover {
    background: #C5A085;
    color: #ffffff;
}

.signin-btngroup {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size:.9375rem;
}

::placeholder {
    color: #b6b8ba !important;
}
.invalid-feedback {
    color: #fd9e93;
}