*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url('../img/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Grayscale overlay on banner */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh; /* Set height of the banner area */
    width: 100%;
    background-image: url('../img/banner.jpg');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    z-index: 0;
    pointer-events: none;
}

.bg-\[\#EBBC28\]{
    background-color: #EBBC28;
}
.content-wrapper {
    position: relative;
    flex: 1;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.logo {
    position: relative;
    z-index: 2; 
}

.login-container {
    position: relative;
    z-index: 2;
    padding: 30px;
    max-width: 488px;
    background-color: #fff;
    margin: 0 auto;
}
/* login form */
.or {
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #777;
    margin: 10px 0;
    position: relative;
}

.or::before,
.or::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #ddd;
}

.or::before {
    left: 0;
}

.or::after {
    right: 0;
}

.sign-in-with-google {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

.sign-in-with-google  {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
}
.register-btn a{
    color: #E60013;
}
/* register */
.register-container,
.layout-container {
    position: relative;
    z-index: 2;
    padding: 30px;
    max-width: 768px;
    background-color: #fff;
    margin: 0 auto;
}
.layout-container{
    position: relative;
    z-index: 2;
    padding: 30px;
    max-width: 1200px;
    background-color: #fff;
    margin: 0 auto;
}
.iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%;
}
/* forget password */
.forget-password-container{
    position: relative;
    z-index: 2;
    padding: 30px;
    max-width: 488px;
    background-color: #fff;
    margin: 0 auto;
}
/* toogle password */
.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
/* verify otp */
.otp-container {
    text-align: center;
    max-width: 400px;
    margin: auto;
}

.otp-inputs {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    margin: 20px 0;
}

.otp-field {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 24px;
    border: 2px solid #ddd;
    border-radius: 5px;
    outline: none;
    transition: all 0.2s ease-in-out;
}

.otp-field:focus {
    border-color: #992025;
    box-shadow: 0 0 5px rgba(153, 32, 37, 0.5);
}

/* footer */
.footer {
    position: relative; 
    width: 100%;
    background: #2F3237;
    text-align: right;
    padding: 8px;
}

.footer p {
    font-size: 16px;
    font-family: 'Gotham Light', sans-serif;
}