/* Main login container */
.login-container {
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    padding: 20px;
}

/* Header styling */
.header {
    text-align: center;
    margin-bottom: 40px;
}

.header h1 {
    color: #333;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

/* Two-column layout wrapper */
.content-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    align-items: flex-start;
}

/* Left column - Login section */
.login-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-header {
    text-align: center;
    margin-bottom: 20px;
}

.login-header p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

/* Right column - Information section */
.info-section {
    flex: 1;
    padding-left: 40px;
}

.info-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.info-item {
    margin-bottom: 30px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item p {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 10px 0;
}

.info-item p strong {
    font-weight: 600;
}

.info-item a {
    color: #4F77B1;
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

/* Container for login form*/
.contains {
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 310px;
    min-height: 300px;
    font-family: Arial, sans-serif;
    color: black;
    padding-top: 40px;
    margin: 0; /* Remove auto-centering */
}

/* Username and password field styles*/
input {
    border: 1px solid lightgray;
    border-radius: 5px;
    font-style: normal;
    outline: none;
    padding: 5px 5px;
    font-size: 11pt;
    width: 260px;
    margin-top: 10px;
    margin-left: 20px;
}

/*Changes border to emphasize input holding focus*/
input:focus {
    border: 2px solid #3ACEDCFF;
}

/*Login button*/
.button-login {
    padding: 5px 50px;
    border-radius: 5px;
    border-color: #4F77B1;
    background-color: #4F77B1;
    box-shadow: none;
    color: white;
    margin: 20px 70px;
    width: 160px;
    font-size: 14pt;
    font-weight: bold;
}

/*Login button changes when enabled*/
.button-login:enabled {
    opacity: 1; /* Enabled */
    pointer-events: auto; /* Enabled */
}

/*Hover bg color change when enabled*/
.button-login:enabled:hover {
    background-color: #343547;
}

/*Spacer between auth form titles & inputs */
.spacer {
    background-color: #DDDDDD; 
    height: 2px; 
    width: 196px; 
    margin: 10px 5px;
}

/*Emphasized, larger text such as "Request Password Rest" for that form*/
.bigtext {
    color: #006080;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    text-align: center;
}

/*Title text for login, mfa, reset, and forgot forms*/
p.title {
    color: black;
    font-weight: bold;
    font-size: 20px;
    padding: 2px 0 0 0;
    text-align: center;
    margin: 0;
}

/*Container for instructions/etc on things like landing pages*/
.instructions {
    color: #4A4A4A;
    text-align: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

/*Emphasized text instructions/etc on things like landing pages*/
.instructions .login-instructions-bold {
    font-size: 20pt;
    font-weight: bolder;
    align-content: normal;
}

/*Standard text for instructions/etc on things like landing pages*/
.instructions .login-instructions {
    font-size: 14pt;
    text-align: center;
    margin: 10px;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .info-section {
        padding-left: 0;
    }
    
    .login-section {
        align-items: center;
    }
}
