.bg-theme {
    background: linear-gradient(225deg, #175274 10%, #33A3D3 100%) no-repeat;
    background-size: 100%;
    background-position: center;
    display: grid;
    justify-content: center;
    padding: 25px 15px;
    height: 100%;
}

a {
    color: #fff;
}

.site-logo {
    text-align: center;
}

.onboarding-form {
    width: 480px;
    max-width: 100%;
    margin: auto;
    text-align: center;
}

.ob-card-box {
    color: #fff;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    margin-top: 30px;
}

.ob-footer-text {
    font-size: 14px;
}

.form-group {
    margin: 50px 0 35px 0;
}

.form-item {
    margin-bottom: 20px;
}

.input-label {
    color: #fff;
    margin-bottom: 5px;
}

.form-item-input {
    padding: 15px;
    border-radius: 50px;
    border: 0;
    font-size: 14px;
    transition: all 0.5s;
}

.form-item-input:focus-visible {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    outline: none;
}

.form-item-input::placeholder {
    color: #CCCCCC;
}

.form-button {
    background: linear-gradient(0deg, #1EB8E2, #1EB8E2);
    color: #fff;
    border-radius: 50px;
    padding: 12px 30px;
    border: 1px solid #FFFFFF4D;
    width: 100%;
    margin-top: 50px;
    font-weight: 700;
}

.password .icon {
    right: 15px;
    bottom: 13px;
    cursor: pointer;
}

.password .icon img {
    width: 25px;
}

@media (max-width:767px) {
    .ob-card-box {
        padding: 15px;
    }

    .bg-theme {
        padding: 15px;
        justify-content: normal;
        /* height: auto; */
    }

    .onboarding-form {
        width: 100% !important;
    }
}