.login-form-outer {
    width: 100%;
    max-width: 599px;
    margin: 0 auto;
    padding: 88px 119px 120px 120px;
    z-index: 0;
    border-radius: 22px;
    border: 2px solid #D2DAE4;
    background: #FFF;
    box-shadow: 0px 4px 6px -2px rgba(38, 69, 131, 0.03), 0px 12px 16px -4px rgba(19, 43, 89, 0.08);
    text-align: center;
}
.login-form-wrapper {
    border-radius: 4px;
    background: #F2F4F7;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
}
.login-input-wrapper input[type="password"] {
    border-top-left-radius: 0;
    border-top: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
.login-input-wrapper .form-control {
    padding: 10px 14px;
    border-radius: 8px 8px 0px 0px;
    border: 1px solid #D0D5DD;
    background: #FFF;
}
.login-form-outer input[type="submit"] {
    color: #fff;
    padding: 15px 28px;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    border-radius: 8px;
    border: 1px solid #FF7A00;
    background: linear-gradient(45deg, #FF7A00 0%, #FFD439 100%);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    margin-top: 68px;
}
.login-input-wrapper input[type="text"]::-webkit-input-placeholder {
    color: #667085;
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
form.login-form-outer h4 , .login-form-outer p{
    color: #101828;
    font-family: Inter;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
    margin: 0;
    padding: 48px 0px 12px 0px;
    text-align: start;
}
.login-form-outer p {
    color: #475467;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 0px 0px 32px 0px;
}
.login-form-outer p:last-child {
    background: linear-gradient(45deg, #FF7A00 0%, #FFD439 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-weight: 600;
    margin-top: 32px;
}
.login-input-wrapper .form-control:focus {
    box-shadow: none;
    outline: none;
    border-color: #D0D5DD;
}