Global Reset
body,
h1,
h2,
h3,
p,
ul,
li {
    margin: 0;
    padding: 0;
}

body {
    background-image: url(../assets/terror-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    scroll-behavior: smooth;
}

.overlay{
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 0;
}



.pageWrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 50px;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
} 

/* Container Styles */
.container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Header Styles */
.loginBox {
    box-shadow: -1px 1px 15px 0px rgba(184, 188, 202, 0.5);
    background-color: #fff;
    margin: auto;
    overflow: hidden;
}

/* Left Side Styles */
.left-side {
    background-color: #f9f9f9;
    text-align: center;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.left-side img {
   width: auto;
}

/* Right Side Styles */
.right-side {
    border: none;
    border-left: 1px solid #eeeeee;
}

.auth-form, .onboard-form{
    display: flex;
    flex-direction: column;
}

/* Logo and Icons Styles */
.logo-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  
}

.logo-container .icon {
    position: relative;
    margin: 0 auto;
    padding: 12px;
    border-radius: 50%;
    border: 1px solid #005341;
    width: 80px;
    height: 80px;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
}

.logo-container .icon img {
    max-width: 100%;
}

/* Text Content Styles */
.title {
    font-size: 18px;
    font-weight: 400;
    color: #404040;
    margin-bottom: 30px;
    margin-top: 50px;
}

label {
    font-size: 12px;
    color: #909090;
    margin-bottom: 5px;
}

footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 30px;
    /* position: fixed; */
    bottom: 0;
    left: 0;
}

/* Input Field Styles */
.input-container {
    border: 1px solid #eeeeee;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 10px;
    height: 40px;
    border-radius: 4px;
    align-items: center;
    padding: 0 10px;
}

.input-container .input-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #909090;
    flex-grow: 1;
    border: 0px solid #fff;
    outline: none;
}

/* Password Input Styles */

.password-input .input-text {
    font-weight: bold;
}

/* Forgot Password Link Styles */
.forgot-password {
    font-size: 0.75rem;
    color: #9a2a1b;
    margin-bottom: 20px;
}

/* Remember Me Styles */
.form-check label{
    font-size: 14px;
    color: #333333;
}
.remember-me {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 3.13rem;
}

.remember-me .checkbox {
    border: 1px solid #d0d5dd;
    width: 18px;
    height: 18px;
    border-radius: 25%;
    margin-right: 10px;
}

.remember-me .label {
    font-size: 0.875rem;
    font-weight: 400;
    color: #333333;
}

/* Login Button Styles */

button, .btn{
    padding: 12px 20px;
    cursor: pointer;
    margin-bottom: 30px;
    border-radius: 50px !important;
    font-size: 14px;
    font-weight: 400;
    box-shadow: -1px 1px 15px 0px rgba(184, 188, 202, 0.5);
}

button:hover{
    box-shadow: inset;
}

.primary-btn, .login-button {
    background-color: #005341;
    cursor: pointer;
    text-decoration: none;
    font-weight: 400;
    color: #fff;
    border: none;
    /* width: 60%; */
}

.primary-btn:hover, .login-button:hover{
    background-color: #014738;
    box-shadow: none;
}

.cancel-button {
    background-color: #fff;
    border: 1px solid #909090;
    color: #909090;
    margin-right: 20px;
}
.form-action{
    margin-top: 30px;
    border-top: solid 1px #eeeeee;
    padding-top: 30px;
    display: flex;
}
p.mute-text{
    color: #909090;
    font-size: 14px;
}

.form-link {
    font-weight: 500;
    color: #9a2a1b;
    text-decoration: none;
    margin-left: 5px;
}
.form-link:hover{
    color: #9a2a1b;
    font-weight: 600;
    text-decoration: underline;
}


/* Don't Have an Account Styles */
.dont-have-account {
    font-size: 0.875rem;
    color: #909090;
    text-decoration: none;
}

.dont-have-account .create-account {
    font-weight: bold;
    color: #9a2a1b;
}


