body,
html {
    height: 100%;
    margin: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.register {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.reg-from {
    background: #fff;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12);
}

.logo-box {
    text-align: center;
    margin-bottom: 30px;
}

.logo-box img {
    max-width: 240px;
    margin-bottom: 15px;
    border-radius: 12px;
}

.logo-box p {
    color: #222;
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

.choose-account-type-span {
    display: block;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 18px;
    color: #333;
    text-align: center;
}

.cards-row {
    margin-bottom: 25px;
}

.reg-card {
    border-radius: 14px;
    border: 1px solid #eaeaea;
    transition: all .18s ease;
    cursor: pointer;
    padding: 18px;
    text-align: center;
    background: #fff;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.reg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.reg-card .fa {
    font-size: 34px;
    display: block;
    margin-bottom: 8px;
    color: #888;
}

.reg-card.active {
    border: 2px solid #01b2a0;
    background: linear-gradient(180deg, #ffffff, #f8fffd);
}

.reg-card.active .fa {
    color: #01b2a0;
}

.btn-user-login {
    border-radius: 10px;
    font-weight: 700;
}

.switch-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    font-weight: 600;
    cursor: pointer;
    color: #01b2a0;
}

.form-row {
    margin-bottom: 10px;
}

.checkbox {
    margin-bottom: 1rem;
}

.checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
}

.title_categories,
.governorates,
.cities {
    display: none;
}

.file-upload {
    border: 2px dashed rgba(1, 178, 160, 0.25);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all .18s ease;
    background: #fbfffe;
    position: relative;
    z-index: 1;
}

.file-upload:hover {
    background: #f4fffb;
    border-color: #01b2a0;
}

.file-upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

/* Reset z-index for other form elements */
.btn-user-login {
    position: relative;
    z-index: 10;
}

.switch-link {
    position: relative;
    z-index: 1;
}
