﻿.WindowsSignIn {
    background-repeat: no-repeat;
    padding: 10px;
    padding-left: 25px;
    padding-right: 20px;
    background-color: whitesmoke;
    border: 1px solid lightblue;
    border-radius: 5px;
    cursor: pointer;
    flex-wrap: nowrap;
    transition: all 0.3s ease;
}

    .WindowsSignIn:hover {
        background-color: rgb(0 150 136 / 30%);
        border: 1px solid lightsteelblue;
        box-shadow: 1.5px 1.5px .5px gainsboro;
        color: var(--primary);
        font-weight: bold;
    }

.WindowsSignInImg {
    height: 5em;
    margin: -30px;
    padding-right: 15px;
    vertical-align: middle;
}

.NoUnderline {
    text-decoration: none;
}

.MixedLogin {
}

.AzureOnly {
}

.logintd {
    border: 0 !important;
    padding: 0 !important;
    box-shadow: rgba(0,0,0,0.5) 0 0 10px;
    z-index: 11;
}

.loginContainer {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
    height: 100vh; /* Full viewport height */
    opacity: 0.9;
    border-radius: 10px;

}

.loginTable {
    width: 100%;
    max-width: 1000px; /* Prevents stretching on large screens */
    border-collapse: collapse;
    border-spacing: 0;
    background: #ffffff; /* Ensures contrast */
    border-radius: 12px; /* Rounded borders */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    overflow: hidden; /* Ensures border-radius applies properly */
    padding: 10px;
}

.loginLogoTd {
    text-align: center !important;
    vertical-align: middle !important;
    padding-right: 0px;
    text-align: left;
    align-content: center;
    vertical-align: middle;
}

.loginImage {
    width: 100%; /* Ensures responsiveness */
    max-width: 220px; /* Slightly smaller for better mobile display */
    display: block; /* Centers image */
    margin: 0 auto; /* Centers image horizontally */
}


.forgottenDiv {
    width: 100%;
    height: 768px;
    height: calc(100vh);
    z-index: 12;
    position: absolute;
    top: 0;
    left: 0;
    vertical-align: middle;
    text-align: center;
    background: #fbf9f9db;
}

.captchText {
    color: var(--header) !important;
}

.loginButton {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    /*text-transform: uppercase;*/
    color: white;
/*    background: linear-gradient(201deg, #2C1B33, #004C8A, #E03A28, #F15A29, #F79442);
    border: none;
*/    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

    .loginButton:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
    }
