.container {

    width: 100%;
    padding: 90px 0px;
}
.form-group{
    margin: 10px 0px 20px 78px;
}
.login-box {
    background-color: #ffffffcc;
    border-radius: 10px;
    padding: 30px;
    width: 500px;
    text-align: center;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.logo img {
    width: 200px;
    margin: 10px 0px;
}

h2 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 20px;
}

.steps {
    margin-bottom: 20px;
}

.steps span {
    font-size: 0.9rem;
    color: #000;
    font-weight: bold;
}

.input-box label {
    display: block;
    text-align: left;
    font-size: 16px;
    color: #000;
    margin-bottom: 5px;
    font-family:  'Roboto', sans-serif;
}

.phone-input {
    display: flex;
}

.phone-input input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
    width: 30%;
    font-size: 1rem;
}

#phone {
    width: 70%;
}

.captcha {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.captcha img {
    margin-left: 10px;
}

.btn {
    background-color: #003397;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    font-family:  'Roboto', sans-serif;
}

.btn:hover {
    background-color: #000;
    color: white;
}

p {
    margin: 20px 0 20px;
    font-size: 1rem;
    color: #000;
}

.signup-btn {
    background-color: #003397;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.signup-btn:hover {
    background-color: #003397;
}

.login_steps {
    min-height: 50px;
    height: auto;
    width: auto;
    background: grey;
    color: #fff;
    text-align: center;
    line-height: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    padding-top: 5px;
    font-weight: bold;
    background: #003397;
    font-family:  'Roboto', sans-serif;
}

span.right_arrow {
    float: right;
    position: relative;
    top: 10px;
    right: -10px;
    font-weight: bold;
}

.login-head {
    font-family:  'Roboto', sans-serif;
    font-size: 22px;
    margin: 15px 0px;
}

.login-steps-text {
    font-family:  'Roboto', sans-serif;
    font-size: 12px;
}

/* Media Queries */
@media (max-width: 768px) {
    .captcha-class {
        font-size: 6px;
    }
    .login-head {
        font-size: 12px;
    }
    .member-class {
        font-size: 12px;
    }
    .login-box {
        width: auto;
        padding: 20px;
    }
.form-group {
    margin: 10px 0px 20px 0px;
}
    .steps span {
        font-size: 0.8rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .phone-input input {
        font-size: 0.9rem;
    }

    .btn, .signup-btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .steps {
        font-size: 0.7rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    .phone-input input {
        font-size: 0.8rem;
    }

    .btn, .signup-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}