.register-form-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Segoe UI', sans-serif;
    padding: 10px;
}

.form-label {
    display: block !important;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
    text-align: left;
}

.form-control, .form-select {
    display: block;
    width: 100% !important;
    height: 50px;
    padding: 10px 15px;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 8px;
    box-sizing: border-box;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

    .form-control:focus, .form-select:focus {
        border-color: #0f2f74;
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(242, 122, 26, 0.25);
    }

textarea.form-control {
    height: auto;
    min-height: 100px;
}

.account-type-switch {
    display: flex;
    background: #eee;
    padding: 4px;
    border-radius: 8px;
    margin-bottom: 25px;
    width: 100%;
}

.account-type-option {
    flex: 1;
    text-align: center;
}

    .account-type-option input {
        display: none;
    }

    .account-type-option label {
        display: block;
        padding: 12px;
        border-radius: 6px;
        font-weight: 600;
        cursor: pointer;
        color: #666;
        transition: all 0.3s;
        margin: 0;
    }

    .account-type-option input:checked + label {
        background-color: #fff;
        color: #0f2f74;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

.btn-signup {
    width: 100%;
    background-color: #0f2f74;
    color: white;
    border: none;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

    .btn-signup:hover {
        background-color: #a5a5a5;
    }

.hidden-field {
    display: none !important;
}

.mt-4 {
    margin-top: 20px;
}

.agreement {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

    .agreement input[type="checkbox"] {
        width: 20px;
        height: 20px;
        accent-color: #e63946;
        cursor: pointer;
        margin-top: 2px;
    }

    .agreement label {
        font-size: 13px;
        color: #666;
        line-height: 1.6;
        cursor: pointer;
    }

        .agreement label a {
            color: #17203b;
            text-decoration: none;
            font-weight: 600;
        }

            .agreement label a:hover {
                text-decoration: underline;
            }
