﻿body {
    font-family: "Segoe UI", Arial, sans-serif; /*changed January 23*/
    font-size: 100%;
    color: #000;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.logo-bar {
    /*background-color: #007bff;*/
    /*text-align: center;*/
    /*padding: 20px 0;*/
}

.logo-image {
    max-height: 50px;
    width: auto;
}

/* Container for login boxes */
.login-boxes {
    display: flex;
    gap: 30px; /* space between boxes */
    flex-wrap: nowrap; /* stack on small screens */
    justify-content: flex-start; /* align boxes left, can change to flex-end or space-between */
    margin-top: 20px;
    /*box-shadow: 0 0 15px rgba(0,0,0,0.2);*/
    background-color: white;
    padding: 20px 20px;
    max-width:660px;
}
.login-box:first-of-type {
    /* Your styles here */
    background-color: #fff;
    border-radius:5px;
    border: 2px solid #cbe6ed;
    padding: 0px 20px 10px 20px;
}
.login-box h1 {
    font-size: 1.2em;
    font-family: "Segoe UI", Arial, sans-serif;
    margin-bottom:0px;
}
.login-box p {
    margin: 0px;
    margin-top: 5px;
    margin-bottom: 15px;
    padding: 0px;
    font-weight: normal;
    font-size: .90em;
}
.login-box a {
    font-size: .95em;
    color: #15153d;
    font-style: normal;
    margin: 10px 0px 0px 0px;
    font-weight: normal;
    display: block;
    text-decoration:underline;
}
.login-box a:last-of-type {
    margin-bottom:10px;
}
.login-box a:visited {
    font-size: .85em;
    color: #333;
    font-style: normal;
}
/* Each login box */
/*.login-box {
    background-color: #fff;
    padding: 30px;*/ /* inner padding */
/*border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    flex: 1 1 400px;*/ /* equal width, responsive */
/*max-width: 400px;*/ /* prevent boxes from being too wide */
/*box-sizing: border-box;
}*/
/* Input with icon */
.input-icon {
    position: relative;
    margin-bottom: 15px;
}

    .input-icon i {
        position: absolute;
        left: 10px;
        top: 65%;
        transform: translateY(-50%);
        color: #888;
        font-size: 16px;
    }

    .input-icon .form-input{
        width: 100%;
        padding: 12px;
        padding-left: 35px; /* space for icon */
        border-radius: 4px;
        border: 1px solid #ccc;
        box-sizing: border-box;
    }
.register .form-input {
    width: 100%;
    padding: 10px;    
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    margin-bottom:15px;
}
/*.register .form-input:last-of-type  {
  padding-bottom:20px;
}*/
/* Button styling */
button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    background-color: #15153d;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    font-size:.95em;
}

    button:hover {
        background-color: #ccc;
    }

/* Validation messages */
.validation-message {
    color: red;
    font-size: 12px;
}
.loginLabel {
    font-weight: normal;
    font-size: .95em;
    color: #666666;
    text-align: left;
    display: inline-block;
    width: 150px;
    margin: 5px 10px 5px 0px;
}