@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

ul,
ul li {
    padding: 0;
    list-style: none;
    margin: 0;
}

a {
    text-decoration: none;
    transition: all 0.8s ease-in-out;
    cursor: pointer;
}

body {
    font-family: 'Urbanist', sans-serif;
}

button {
    transition: all 0.8s ease-in-out;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}
.auth-main {
    position: relative;
    z-index: 1;
}
.auth-outer-box {
    border: 1px solid var(--G300, #CBCAD7);
    background: #FFFFFF;
    max-width: 511px;
    margin: 16px auto 0;
    padding: 35px 43px;
    text-align: center;
    border-radius: 7px;
}

.auth-heading {
    font: 700 24px/30px 'Urbanist', sans-serif;
    color: #000000;
    padding-bottom: 5px;
    text-transform: uppercase;
}

.auth-note {
    font: 400 16px/22px 'Urbanist', sans-serif;
    color: #000000;
    padding: 0 0 18px;
}

.auth-button-box , .auth-form {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 11px;
}
.auth-form{
    gap: 16px;
}

.auth-button-box button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 7px 0;
    font: 400 14px/20px 'Urbanist', sans-serif;
    border-radius: 7px;
    text-transform: uppercase;
}

.auth-btn-icon {
    width: 26px;
    height: 26px;
}

.auth-input-main {
    width: 100%;
    padding: 16px 20px;
    color: #000000;
    font: 400 16px/22px 'Urbanist', sans-serif;
    border-radius: 6px;
    border: 1px solid var(--G300, #CBCAD7);
    box-sizing:border-box;
}
.auth-input-main:focus-visible{
    outline: none;
    box-shadow: none;
}
.auth-input-main::placeholder{
    color: #adadad;
}
.password-field {
    width: 100%;
    position: relative;
}
#passwordIcon{
    position:absolute;
    top:50%;
    right:20px;
    transform:translateY(-50%);
    width:24px;
    height:24px;
    cursor:pointer;
}

.auth-btn {
    width: 100%;
    padding: 15px;
    background: #5F0052;
    font: 400 20px/26px 'Urbanist', sans-serif;
    color: #FFFFFF;
    text-transform: uppercase;
    border: 1px solid #5F0052;
    border-radius: 8px;
    margin: 8px 0 0;
}
.auth-btn:hover{
    background: transparent;
    color: #5F0052;
}
.not-a-member{
    font: 400 18px/24px 'Urbanist', sans-serif;
    color: #000000;
}
.not-a-member a{
    color: #5F0052;
}
.Forgot-Password{
    color: #05309D !important;
    font: 400 18px/24px 'Urbanist', sans-serif;

}
.forgot-main .auth-outer-box {
    padding: 16px 16px 35px;
}
.back-btn-icon{
    width: 22px;
    height: 22px;
    display:block;
    cursor: pointer;
}
.forgot-main-image {
    width: 130px;
    height: 96px;
    margin-bottom: 35px;
}
.forgot-main .auth-form{
    padding: 0 14px;
}
@media (max-width:575px) {
    .auth-outer-box {
    border: none;
    background: #FFFFFF;
    max-width: 100%;
    margin: 0;
    padding: 0;
}
.forgot-main .auth-outer-box{
    padding: 0;
}
.checkbox-text {
    font: 400 9px/15px 'Urbanist', sans-serif;
}
.forgot-main .auth-form {
    padding: 0;
}
}
