﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}


.background {
    background-color: #E5F3FF; /* Set the background color */
    background-repeat: no-repeat, no-repeat;
    background-attachment: fixed, fixed;
    background-size: 433px auto, 461px auto; /* Maintain aspect ratio with auto height */
    background-position: left bottom, right bottom; /* Align images at the bottom corners */
    background-image: url('/SSO/Images/background/login-background-left.svg'), url('/SSO/Images/background/login-background-right.svg');
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}




div.center-panel {
    background-color: rgba(255, 255, 255, 1);
    padding: 20px 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    margin-left: 30%;
    width: 45% !important;
}

/*.logo-container {
    display: flex;
    align-items: center;*/ /* Align items vertically centered */
    /*justify-content: center;*/ /* Center horizontally */
    /*margin-bottom: 20px;
    width: 350px;
    margin-left: -10px;
}*/

/*.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    width: 350px;
    height: 100px;*/ /* Define a consistent height for the container */
    /*position: relative;*/ /* So logos can be positioned absolutely */
    /*max-height: 100px;*/ /* Ensuring all images stay the same size */
/*}

.logo {
    max-height: 100px;*/ /* Ensure logos scale to the same height */
    /*margin-right: 10px;*/ /* Add margin to separate logos if needed */
    /*object-fit: contain;*/ /* This will ensure the logo scales correctly inside the container */
/*}*/

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
    width: 100%;
    height: auto; /* This ensures the height is flexible */
    position: relative;
}

.logo {
    max-height: 100px;
   /* margin-bottom: 20px;*/
    object-fit: contain;
    display: block; /* Images are shown by default */
}

.hidden {
    display: none; /* Class to hide logos */
}

/* Additional styling for the sign-in form */
.signin-container {
    margin-top: 20px; /* This can be adjusted to control spacing */
    text-align: center;
}


.perform-text {
    font-size: 28px;
    color: #333;
    margin: 0; /* Remove default margin */
}

h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

h4 {
    font-size: 20px;
    color: #666;
   /* margin-bottom: 20px;*/
}

.form-container {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.sign-in-button {
    width: 100%;
    padding: 10px;
    background-color: #0073e6;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .sign-in-button:hover {
        background-color: #005bb5;
    }

.forgot-password {
    display: block;
    margin-bottom: 20px;
    font-size: 14px;
    color: #0073e6 !important;
    text-decoration: none;
}

    .forgot-password:hover {
        text-decoration: underline;
    }

.instruction-text {
    font-size: 12px;
    color: #777;
    margin-bottom: 20px;
    margin-top: 20px
}

    .instruction-text a {
        color: #0073e6;
        text-decoration: none;
    }

        .instruction-text a:hover {
            text-decoration: underline;
        }

/* Switch container moved outside the center-panel and given the same width */
.switch-container {
    margin-top: 20px;
    padding: 10px 20px; /* Adjust padding for better spacing */
    border-radius: 5px; /* Rounded corners */
    text-align: center;
    display: flex; /* Use flex to keep content in a single line */
    align-items: center; /* Vertically center items */
    background-color: #E5F3FF; /* Dark background for contrast */
    width: 100%; /* Full width of the center panel */
    max-width: 550px; /* Match max-width of the center panel */
    justify-content: center; /* Center content horizontally */
    font-size: small;
    margin-left: -10%;
}

.switch-text {
    color: #AAAAAA; /* White text for visibility */
    font-size: 14px;
    margin: 0 5px; /* Spacing between the text and links */
}

.switch-link {
    color: #0075db; /* White links */
    text-decoration: underline; /* Underlined to indicate links */
    font-weight: bold;
    margin: 0 5px; /* Spacing between the links and text */
}

    .switch-link:hover {
        text-decoration: none; /* Remove underline on hover */
        color: #D1C4E9; /* Lighter purple on hover */
    }
.form-group {
    margin-bottom: 20px;
}
