.account-request {
    padding: 100px 0;
    background: #f7f6f4;
}

/* MAIN CARD */
.account-card {
    width: 1200px;
    max-width: 95vw;
    background: #ffffff;
    border-radius: 40px;
    padding: 70px 80px;
    border: 2px solid #d2b882;
}

/* HEADER */
.form-logo {
    width: 90px;
    margin-bottom: 20px;
}

.form-title {
    font-family: 'EB Garamond', serif;
    font-size: 34px;
}

.form-subtitle {
    color: #666;
}

/* ROW SPACING FIX */
.account-card .row {
    margin-bottom: 22px;
}

/* FIELD */
.field {
    position: relative;
}

.field i {
    position: absolute;
    top: 50%;
    left: 22px;
    transform: translateY(-50%);
    color: #b1976b;
    font-size: 18px;
}

.field input,
.field select {
    width: 100%;
    height: 62px;
    padding: 14px 20px 14px 58px;
    border-radius: 18px;
    border: 1.8px solid #d2b882;
    font-size: 17px;
}

/* UPLOAD PHOTO FIX */
.upload-box {
    width: 100%;
    height: 160px;
    border: 2px dashed #d2b882;
    border-radius: 20px;
    padding: 20px;
    background: #faf8f4;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;

    overflow: hidden;   /* HARD STOP overflow */
}

.upload-box i {
    font-size: 32px;
    color: #b1976b;
}

.upload-label {
    background: #b1976b;
    color: #121518;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}

.upload-label:hover {
    background: #d2b882;
}

.upload-box span {
    font-size: 13px;
    color: #555;
    max-width: 100%;
    text-align: center;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;  /* ✨ prevents overflow */
}


/* BUTTON */
.submit-btn {
    width: 100%;
    height: 64px;
    margin-top: 40px;
    background: linear-gradient(135deg,#b1976b,#d2b882);
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    transition: 0.3s ease;
}

.submit-btn:hover {
    transform: scale(1.04);
}

/* MOBILE */
@media (max-width: 768px) {
    .account-card {
        padding: 40px 25px;
    }
}
