@import url('./hollard-fonts.css');

body {
    font-family: 'Hollard Sans', Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    display: flex;
    width: 90%;
    max-width: 1200px;
    height: 80%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    background-color: white; /* Ensure the background is white */
    position: relative; /* Add relative positioning to the container */
}

.logo-container {
    position: absolute;
    top: 32px;
    left: 32px;
}

.login-section, .promo-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-section {
    background-color: #F9F9FF; /* Updated background color */
    padding: 40px;
}

.login-box {
    text-align: center;
    width: 80%;
}

.logo {
    width: 100px; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 20px; /* Space between logo and login header */
}

.login-box h1 {
    font-family: 'Hollard Sans', sans-serif;
    font-weight: 700;
    color: #442359; /* Primary color */
    margin-bottom: 10px;
}

.login-box p {
    color: #ADADAD; /* Secondary color */
    margin-bottom: 30px;
}

.login-box form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.login-box label {
    width: 100%;
    max-width: 300px;
    text-align: left;
    margin-bottom: 5px;
    color: #A58B3F; /* Primary color */
}

.login-box input {
    width: 100%;
    max-width: 300px; /* Set a max-width to match the button */
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #DADADA; /* Secondary color */
    border-radius: 5px;
    box-sizing: border-box; /* Ensure padding is included in the width */
}

.login-box button {
    width: 100%;
    max-width: 300px; /* Set a max-width to ensure the button isn't too wide */
    padding: 12px 0;
    background-color: #442359; /* Primary button color */
    color: white;
    border: none;
    border-radius: 4px; /* Slightly more rounded corners */
    cursor: pointer;
    font-family: 'Hollard Sans', sans-serif;
    font-weight: 700; /* Bold as per style guide */
    font-size: 16px; /* Adjust size if specified */
    text-transform: uppercase; /* Uppercase text */
    transition: background-color 0.3s;
    text-align: center; /* Center-align the text */
}

.login-box button:hover {
    background-color: #3b204e; /* Slightly darker primary button color */
}

.forgot-password {
    display: block;
    margin-top: 15px;
    color: #ADADAD; /* Secondary color */
    text-decoration: none;
}

.promo-section {
    background: white; /* Ensure the background color is white */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0; /* Remove padding to eliminate gray areas */
    height: 100%; /* Ensure the promo section takes up full height */
}

#response {
    color: red;
    margin-top: 10px;
}

.promo-section img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensure the image fits without clipping */
    background-color: white; /* Fill any gaps with white */
}

