* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: #f4f4f4;
    padding-block: 25px;
}
.container {
    width: 80%;
    max-width: 1200px;
    display: flex;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.left-column, .right-column {
    width: 50%;
    padding: 40px 30px;
    background-color: #ffffff;
}
.left-column {
    border-right: 2px solid #f0f0f0;
}
.logo {
    text-align: center;
}
.login-heading, .create-heading {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}
.form-group {
    margin-bottom: 20px;
}
.form-group input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s;
}
.form-group input:focus {
    outline: none;
    border-color: yellow;
}
.form-group .error {
    border-color: red;
}
.error-placeholder {
    color: red;
    font-size: 14px;
    margin-top: 5px;
    display: none; /* Hide by default */
}
.checkbox-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.checkbox-group a {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}
.checkbox-group a:hover {
    text-decoration: underline;
}
.login-btn, .create-account-btn {
    width: 100%;
    padding: 10px;
    background-color: #00d0ff;
    color: black;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}
.login-btn:hover, .create-account-btn:hover {
    background-color: #04bbe4;
}
.create-account-btn a {
    color: black;
    text-decoration: none;
}

#state_prov_nonuk{
    display: none;
}

.password-toggle-icon-custom{
    top:13px !important;
}
/* Extra Small devices (landscape phones, 575px and below) */
@media (max-width: 575px) {


}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {



}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) { 


}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

    
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {



}