#main {
    background-color: transparent;
}

#main .grid-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0;
}

.grid-head span {
    color: var(--Primary-text, #0C1421);
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: 'Zilla Slab';
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 36px */
    letter-spacing: 0.36px;
    text-transform: capitalize;
}

.grid-head hr {
    width: 122px;
    height: 8px;
    border-radius: var(--spacing-1, 4px);
    background-color: #000;
    margin: 0;
    margin-top: 0.5rem;
}

.grid-content {
    display: grid;
    grid-template-columns: auto 52.6%;
    column-gap: 3rem;
    margin: 1rem 0;
}

.grid-content .item-1 .welcome {
    margin-bottom: 1rem;
}

.grid-content .item-1 .quote {
    margin-bottom: 0;
    text-align: start;
    color: var(--Secondary-text, #313957);
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    /* 32px */
    letter-spacing: 0.2px;
}

.grid-content .item-1 #user-form {
    margin-top: 1rem;
}

.grid-content .item-1 #user-form .form-label {
    color: var(--Primary-text, #0C1421);
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 16px */
    letter-spacing: 0.16px;
}

.grid-content .item-1 #user-form .form-control {
    /* border-radius: 12px; */
    border: 1px solid #D4D7E3;
    background: #F7FBFF;
    height: 48px;
    color: #7D7D7D !important;
}

.grid-content .item-1 #user-form .forget-pwd-text{
    display: flex;
    justify-content: end;
}

.grid-content .item-1 #user-form .forget-pwd-text p{
    width: fit-content;
    cursor: pointer;
    margin-bottom: 0;
    color: var(--Link, #1E4AE9);
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.16px;
}

.grid-content .item-1 #user-form .btn-submit {
    color: #1a1a1c;
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 20px */
    letter-spacing: 0.2px;
    border-radius: 100px;
    background: #93BA40;
    width: 100%;
    height: 48px;
    margin: 1rem 0;
}
.grid-content .item-1 #user-form .btn-submit:hover{
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: scale(0.95);

}

.grid-content .item-2 {
    border-radius: 24px;
}

.grid-content .item-2 img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 24px;
}

.hr-wrapper {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 0.4rem;
    padding-left: 0.2rem;
    color: #294957;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 16px */
    letter-spacing: 0.16px;
}

.hr-wrapper hr {
    width: 100%;
    height: 1px;
    background-color: #CFDFE2;
    margin: 0;
}

.btn-social {
    border-radius: 100px;
    background: #F3F9FA;
    color: var(--Secondary-text, #313957);
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 16px */
    letter-spacing: 0.16px;
    border: none;
    width: 100%;
    height: 48px;
    margin-bottom: 1rem;
}

.btn-social img{
    margin-right: 0.5rem;
}

.question {
    color: var(--Secondary-text, #313957);
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.18px;
}

.copy-right-text {
    color: #959CB6;
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.16px;
}