/* PAGE BACKGROUND */
.apply-page {
    background: #eef2f7;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 40px 20px;
}

/* CONTAINER */
.apply-container {
    width: 100%;
    max-width: 900px;
}

/* CARD (LIKE MODAL) */
.apply-card {
    background: #fff;
    border-radius: 15px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.1);

    overflow: hidden;
}

/* HEADER */
.apply-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.apply-header h2 {
    color: #2d6cdf;
    margin-bottom: 5px;
}

.apply-header p {
    color: #777;
}

/* BODY SCROLL */
.apply-body {
    max-height: 70vh;   /* 🔥 scroll inside */
    overflow-y: auto;

    padding: 25px;
}

/* TEXT */
.apply-body h3 {
    margin-top: 20px;
}

.apply-body ul {
    padding-left: 18px;
    margin-top: 10px;
}

/* APPLY FORM */
.apply-section {
    margin-top: 30px;
}

.apply-title {
    text-align: center;
    color: green;
    margin-bottom: 15px;
}

/* FORM */
.form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

input, textarea {
    width: 100%;
    padding: 12px;

    border-radius: 8px;
    border: 1px solid #ddd;

    font-size: 14px;
}

textarea {
    height: 120px;
}

/* UPLOAD */
/* MAIN CARD */
.resume-upload {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #eee;
    margin-top: 15px;
}

/* HEADER */
.upload-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.upload-header h4 {
    font-size: 16px;
    font-weight: 600;
}

.upload-header h4 span {
    color: red;
}

.upload-header p {
    font-size: 12px;
    color: #888;
}

/* ICON */
.upload-icon {
    font-size: 20px;
}

/* BOX */
.upload-box {
    border: 2px dashed #e2e2e2;
    border-radius: 12px;
    padding: 25px;
    background: #fafafa;

    position: relative;
    cursor: pointer;
}

/* INNER CENTER */
.upload-inner {
    text-align: center;
}

/* CLOUD ICON */
.upload-cloud {
    font-size: 28px;
    margin-bottom: 10px;
    color: #ff6a00;
}

.upload-cloud img {
    width: 40px;
    height: auto;
    margin-bottom: 10px;
}

/* TEXT */
.drag-text {
    font-weight: 600;
    font-size: 14px;
}

.browse-text {
    font-size: 12px;
    color: #777;
    margin: 5px 0;
}

.file-types {
    font-size: 11px;
    color: #999;
    margin-top: 8px;
}

/* HIDDEN INPUT */
.file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

/* HOVER EFFECT */
.upload-box:hover {
    border-color: #ff6a00;
    background: #fff7f2;
}

/* BUTTON */
.submit-btn {
    display: block;
    margin: 20px auto 0;

    background: #2d6cdf;
    color: #fff;

    padding: 12px 30px;
    border-radius: 25px;

    border: none;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .apply-body {
        max-height: 75vh;
    }

    .form-row {
        flex-direction: column;
    }

@media (max-width: 768px) {

    .upload-box {
        padding: 20px;
    }

    .upload-cloud {
        font-size: 24px;
    }

}

}