﻿.k-window {
    display: flex !important;
    width: 100%;
    height: 100%;
    top: 0 !important;
    left: 0 !important;
    transform: scale(1) !important; /*fix for escape key press*/
    opacity: 1 !important; /*fix for escape key press*/
}

.k-window-content, .k-prompt-container {
    background-image: url('../../Images/AtlasBackground.png') !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

#login-window {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

#login-window > form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: -webkit-fill-available;
    width: fit-content;
    background-color: transparent;
    padding-left: clamp(1rem, 8%, 10rem);
}

#logo-row {
    background-image: url("../../Images/AtlasLogo.png") !important;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}

input[type="text"]::placeholder {
    color: #F9D568 !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-background-clip: text;
    -webkit-text-fill-color: #F9D568;
}

input[type="password"]::placeholder {
    color: #F9D568 !important;
}

input[type="password"]:focus {
    outline: none;
}

#Password {
    background-color: transparent;
    color: #F9D568 !important;
    border: none;
    border-bottom: solid 1px #F9D568;
    width: 100%;
    padding-bottom: 12px;
    padding-top: 3px;
}

input[type="text"] {
    background-color: transparent;
    color: #F9D568 !important;
    border: none;
    border-bottom: solid 1px #F9D568;
    width: 100%;
    padding-bottom: 12px;
    padding-top: 3px;
    outline: none;
}

.input-container {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-bottom: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.icon {
    padding: 10px;
    background-color: transparent !important;
    min-width: 30px;
    text-align: center;
    border-bottom: solid 1px #F9D568;
}

.email-icon {
    background-image: url("../../Images/Icons/EmailIcon.svg");
    background-repeat: no-repeat;
    background-size: auto;
}

.password-icon {
    background-image: url("../../Images/Icons/PasswordIcon.svg");
    background-repeat: no-repeat;
    background-size: auto;
}

#details-row {
    height: 55%;
    width: 100%;
    padding-top: 40px;
}

#btnLogin {
    width: 100%;
    height: 50px;
    color: black;
    background: linear-gradient( 275deg,
    #c0994f 0%,
    #fff3b6 46%,
    #9a6a28 100%
    );
    font-weight: bold;
    text-transform: uppercase;
    border-color: transparent;
    border-radius: 5px;
}

.field-validation-error {
    font-size: 12px !important;
}

.validation-summary-errors {
    display: none;
}