﻿
* {
    box-sizing: border-box;
}


.k-widget.k-window.k-window-titleless {
    left: 0 !important;
    top: 0 !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
}

#loginWindow {
    overflow: hidden;
}


.k-overlay {
    background: url("../../../../Images/ITT_Login.jpeg") no-repeat center;
    background-size: cover;
    opacity: 1 !important;
}


#loginForm {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI';
    font-size: 16px;
    color: white;
}

.login-content {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
}


#logoRow {
    width: 109%;
    height: 138px;
    margin-bottom: 30px;
    background-image: url("../../../../Images/ITT_Login_Logo.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
}


#detailsRow {
    width: 100%;
}


.input-container {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.input-icon {
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

.username-icon {
    background-image: url("../../../../Images/Username-Icon.png");
}

.password-icon {
    background-image: url("../../../../Images/password-icon.png");
}


.input-container input {
    flex: 1;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid white;
    color: white;
    padding: 8px 4px;
    font-size: 16px;
    outline: none;
}

    .input-container input::placeholder {
        color: white;
    }

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffffff;
}

.validation {
    width: 100%;
    text-align: left;
    margin-bottom: 14px;
}


.remember-row {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 25px 0 20px;
}


.form-buttons {
    width: 100%;
}

#loginBtn {
    width: 100%;
    height: 42px;
    font-size: 18px !important;
    background-color: #E42217;
    color: white;
}

    #loginBtn:hover {
        background-color: darkred;
        box-shadow: 0 0 8px red;
    }

    #loginBtn:active {
        box-shadow: 0 0 4px rgba(255, 0, 0, 0.7);
    }

input[type="checkbox"] {
    margin: 0px 0px 3px;
}

.validation > .validation-summary-errors > ul {
    padding-left: 26px;
}