<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    box-sizing: border-box;
}

/* Add padding to containers */
container {
    padding: 14px;
    border-radius: 5px;
    background-color: #FFF;
    width: 70%;
    color: #54504a;
    text-align: left;
    border: 1px solid #e7e7e7;
    margin-bottom: 10px;
}

a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: bolder;
}

.whitelink a:link{
    color: #337ab7;
    text-decoration: underline;
    font-weight: bolder;
    background-color: rgba(214, 244, 216, 0.47);
}


h3 {
    color: #337ab7;
}

.cenbtn {
    text-align: center;
}

/* Full-width input fields */
input[type=text], input[type=password] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    display: inline-block;
    border: none;
    background: #f1f1f1;
}

input[type=text]:focus, input[type=password]:focus {
    background-color: #ddd;
    outline: none;
}

/* Overwrite default styles of hr */
hr {
    border: 1px solid #f1f1f1;
    margin-bottom: 25px;

}

/* Set a style for the submit button */
.registerbtn {
    background-color: #337ab7;
    color: white;
    padding: 16px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 40%;
    opacity: 0.9;
    text-align: center;
}

.registerbtn:hover {
    opacity: 1;
}


.card-body-login {
    border-bottom-color: #979aa0;
    text-align: center;
    background: rgba(255, 255, 255, 0.60);
    /* border: 1px solid darkgray;*/
    color: #000000;
    width: 60%; /* Increased to 60% for even better spacing */
    /*font-weight: bold;*/
    box-sizing: border-box;

    font-size: 16px;
    padding-top: 5px;
    padding-right: 20px;
    padding-bottom: 5px;
    padding-left: 20px;
    margin: 100px auto;
}

/* Set a grey background color and center the text of the "sign in" section */
.signin {
    background-color: rgba(223, 228, 228, 0.84);
    border-radius: 10px;
    text-align: center;
}

@media screen and (max-width: 700px) {
    .column {
        width: 100%;
        display: block;
    }
}


@media only screen and (min-width: 501px) and (max-width: 1250px) {
    .card-body-login {
        width: 60%; /* Match the main width setting */
    }
}

/* Password input container for toggle */
.password-input-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.password-input-container input[type=password],
.password-input-container input[type=text] {
    padding-right: 45px; /* Make space for the icon */
}

/* Password toggle icon */
.password-toggle-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    font-size: 18px;
    user-select: none;
    margin-top: -11px; /* Adjust for margin */
}

.password-toggle-icon:hover {
    color: #333;
}</pre></body></html>