/* Page styles */
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(
            45deg,
            #021331,
            #00467b 33%,
            #00467b 66%,
            #021331
    );
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Open Sans", sans-serif;
}

.container {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    width: 80%;
    max-width: 1200px;
    margin-top: 80px;
}

.column {
    flex: 1;
    padding: 20px;
}

.column-left {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 70px;
    padding: 40px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 0;
    flex: 0 0 calc(50% + 35px);
    position: relative;
    right: -100px;
}

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
    .column-left {
        -webkit-backdrop-filter: blur(16px) brightness(17%) opacity(0%);
        backdrop-filter: blur(16px) brightness(17%) opacity(0%);
    }
}

.column-image {
    max-width: 260px;
    height: auto;
    display: block;
    margin: -115px auto 20px;
}

.column-heading {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 800;
    font-size: 29px;
}

h2.column-heading {
    color: #ffffff;
}

h1.column-heading {
    color: #01254B;
}

.column-right {
    background-color: #ffffff;
    border-radius: 70px;
    padding: 40px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1;
    flex: 0 0 calc(50% - 35px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    max-width: 245px;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

/* Login section */

.login-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.login-section span {
    font-weight: 700;
    font-size: 14px;
    color: #6e6969;
}

.login-btn {
    border: none;
    cursor: pointer;
    width: 130px;
    height: 25px;
    border-radius: 25px;
    background-color: #dbb429;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 22px;
    transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out;
    outline: none;
}

/* Llogin page */
.login-page .login-column {
    width: 100%;
    max-width: 600px;
    margin: auto;
    padding: 40px 20px;
    background-color: #ffffff;
    border-radius: 70px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-page .login-fields {
    width: 100%;
    max-width: 100%;
    padding: 20px;
}

.login-fields form {
    width: 100%;
}

.login-page .login-page-regbtn {
    border: none;
    width: 130px;
    height: 25px;
    border-radius: 25px;
    cursor: pointer;
    background-color: #dbb429;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 22px;
    transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out;
    outline: none;
}

.login-page .login-page-regbtn:hover {
    background-color: #00467b;
    color: #ffffff;
}

.login-page .login-btn {
    width: 260px;
    height: 50px;
    border-radius: 25px;
    background-color: #01477b;
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    transition: background-color 0.4s ease-in-out;
    border: none;
    outline: none;
    margin-top: 30px;
    cursor: pointer;
}

/* Hover */
.login-page .login-btn:hover {
    background-color: #dbb429;
    color: #01477b;
}

/* Login options */
.login-page .login-fields .login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.login-page .login-fields .remember-me {
    display: inline-flex;
    align-items: center;
}

.login-page .login-fields .remember-me input[type="checkbox"] {
    margin-right: 10px;
    vertical-align: middle;
}

.login-page .login-fields .forgot-password {
    text-decoration: none;
    color: #01477b;
}

.login-page .login-fields .remember-me input[type="checkbox"] {
    width: 19px;
    height: 19px;
    border: 2px solid #DBB429;
    border-radius: 6px;
    margin-right: 10px;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    background-color: white;
}




/* Style for checkbox when it is checked */
.login-page .login-fields .remember-me input[type="checkbox"]:checked {
    background-color: #DBB429;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="white" d="M12.146 4.854a.5.5 0 1 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-3-3a.5.5 0 1 1 .708-.708L6.5 10.793l5.646-5.647z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
}



/* Define focus and active styles */

.login-btn:focus,
.login-btn:active {
    border: none;
    outline: none;
}

.login-btn:hover {
    background-color: #01477b;
    color: white;
}

/* Register */
.register-btn {
    border: none;
    outline: none;
    width: 260px;
    height: 50px;
    border-radius: 25px;
    background-color: #01477b;
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    transition: background-color 0.4s ease-in-out;
    margin-top: 20px;
}

.register-btn:hover {
    background-color: #dbb429;
}

.register-btn:focus,
.register-btn:active {
    border: none;
    outline: none;
}

/* Account steps styles*/

.custom-list {
    list-style: none;
    margin-top: 90px;
    padding-left: 90px;
}

.custom-list li {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    padding-left: 45px;
    line-height: 38px;
    margin-bottom: 28px;
}

.custom-list .icon {
    position: absolute;
    left: -10px;
    top: 50%;
    width: 38px;
    height: 38px;
    transform: translateY(-50%);
    background-size: contain;
    background-repeat: no-repeat;
}

.custom-list .account-icon {
    background-image: url("images/create-acc-icon.png");
}

.custom-list .qualification-icon {
    background-image: url("images/qualification-icon.png");
}

.custom-list .details-icon {
    background-image: url("images/details-icon.png");
}

.custom-list .identity-icon {
    background-image: url("images/identity-icon.png");
}

.custom-list .sales-icon {
    background-image: url("images/sales-icon.png");
}

.custom-list .campus-icon {
    background-image: url("images/campus-icon.png");
}

.custom-list .offer-icon {
    background-image: url("images/offer-icon.png");
}

.custom-list .pay-icon {
    background-image: url("images/pay-icon.png");
}

.custom-list .student-icon {
    background-image: url("images/student-icon.png");
}

/* Field styles */

.fields {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 50px 40px;
    text-align: center;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
select {
    box-sizing: border-box;
    width: 100%;
    border-radius: 25px;
    border: 2px solid #dbb429;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    color: #9a9a9a;
    padding: 8px 15px;
    margin-bottom: 25px;
    line-height: normal;
}

/* Style the placeholder text */
::placeholder {
    color: #9a9a9a;
    opacity: 1;
}

/* Specific style for select */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="%236E6969"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 28px;
    display: inline-block;
    width: 100%;
}


/* Responsive Design */

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
        width: 100%;
        padding-left: 5%;
        padding-right: 5%;
    }

    .column-left,
    .column-right {
        border-radius: 40px;
        flex: 1 0 auto;
        max-width: 100%;
        position: relative;
        right: auto;
        padding-left: 7%;
        padding-right: 7%;
    }

    /* .column-right {
      order: -1;
    } */
    .column-left {
        z-index: 5;
    }

    .column.login-column {
        padding-left: 0;
        padding-right: 0;
    }

    .logo {
        max-width: 200px;
    }

    .fields {
        padding: 0;
        margin-top: 50px;
        margin-bottom: 60px;
    }

    .column-image {
        max-width: 200px;
        margin: -100px auto 20px;
    }

    .custom-list {
        padding-left: 5%;
        padding-right: 5%;
    }

    .custom-list li {
        text-align: left;
        padding-left: 45px;
        line-height: 26px;
        color: #ffffff;
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 35px;
        position: relative;
    }

    .custom-list .icon {
        position: absolute;
        left: 0;
        top: 50%;
        width: 32px;
        height: 32px;
        transform: translateY(-50%);
        background-size: contain;
        background-repeat: no-repeat;
    }

    .returning-students-button {
        display: block;
        text-align: center;
        margin-top: 10px;
        padding: 10px;
        border: none;
        background-color: transparent;
        cursor: pointer;
    }

    .returning-students-button img {
        max-width: 100%;
        height: auto;
    }
    
}
