.input-wrapper {
    display: flex;
    align-items: center;
    /* border: 1px solid #ccc; */
    border-radius: 5px;
}

.login-form-container .login-btn,
.login-form-container .register-btn {
    margin-top: 20px;
    padding: 8px 60px;
    border-radius: 100px 100px 100px 100px;
}

.prefix {
    padding: 8px 12px;
    background: #fff;
    color: #555;
    pointer-events: none;
    font-size: 16px;
}

.phone-input {
    flex-grow: 1;
    border: none;
    padding: 8px 12px;
    font-size: 16px;
    border-radius: 0;
    /* Reset border-radius for iOS */
    -webkit-border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
}

.black-style .login-btn,
.black-style .register-btn {
    background-color: #8fc31f;
}

.button-content {
    margin-right: 5px;
}


.conditions {
    list-style-type: none;
    font-family: "Poppins", sans-serif;
    padding-left: 0;
    color: white;
}

.conditions li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.conditions li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: white;
    font-size: 18px;
}

.mt-7 {
    margin-top: 4.5rem;
}

.modal-title {
    color: white;
}

@media only screen and (max-width: 479px) {
    .login-form-container {
        padding: 0 0 30px!important;
    }
}