/* =========================================================
                GOOGLE FONT
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* =========================================================
                RESET
========================================================= */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;

}

/* =========================================================
                BODY
========================================================= */

body{

    background:#f4f7fc;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
    padding:40px 20px;

}

/* =========================================================
                SECTION
========================================================= */

.resume-section{

    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;

}

/* =========================================================
                CARD
========================================================= */

.resume-card{

    width:100%;
    max-width:650px;

    background:#ffffff;

    border-radius:18px;

    padding:45px;

    box-shadow:0 12px 35px rgba(0,0,0,.12);

}

/* =========================================================
                HEADER
========================================================= */

.resume-header{

    text-align:center;
    margin-bottom:35px;

}

.resume-header h2{

    font-size:40px;
    font-weight:700;
    color:#111827;
    margin-bottom:12px;

}

.resume-header span{

    color:#2563eb;

}

.resume-header p{

    color:#6b7280;
    font-size:16px;
    line-height:1.6;

}

/* =========================================================
                FORM GROUP
========================================================= */

.form-group{

    margin-bottom:22px;

}

/* =========================================================
                INPUT
========================================================= */

.form-group input,
.form-group textarea{

    width:100%;

    padding:15px 18px;

    border:1px solid #d1d5db;

    border-radius:10px;

    font-size:15px;

    outline:none;

    transition:.3s;

    background:#fff;

}

/* =========================================================
                INPUT FOCUS
========================================================= */

.form-group input:focus,
.form-group textarea:focus{

    border-color:#2563eb;

    box-shadow:0 0 8px rgba(37,99,235,.20);

}

/* =========================================================
                TEXTAREA
========================================================= */

.form-group textarea{

    resize:none;
    min-height:160px;

}

/* =========================================================
                FILE UPLOAD
========================================================= */

.resume-upload{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    padding:22px;

    border:2px dashed #2563eb;

    border-radius:12px;

    cursor:pointer;

    transition:.3s;

    color:#2563eb;

    font-weight:600;

    background:#fafcff;

}

.resume-upload:hover{

    background:#edf4ff;

}

.resume-upload input{

    display:none;

}

.resume-upload i{

    font-size:22px;

}

#fileName{

    white-space:nowrap;

    overflow:hidden;

    text-overflow:ellipsis;

    max-width:320px;

}

/* =========================================================
                BUTTON
========================================================= */

.resume-btn{

    width:100%;

    border:none;

    padding:16px;

    border-radius:10px;

    background:#2563eb;

    color:#fff;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.resume-btn:hover{

    background:#1d4ed8;

    transform:translateY(-2px);

}

/* =========================================================
                STATUS
========================================================= */

#resume-status{

    margin-top:18px;

    text-align:center;

    font-size:15px;

    font-weight:600;

}

/* =========================================================
                MOBILE
========================================================= */

@media(max-width:768px){

.resume-card{

    padding:30px 22px;

}

.resume-header h2{

    font-size:30px;

}

.resume-header p{

    font-size:14px;

}

.resume-upload{

    flex-direction:column;

}

#fileName{

    max-width:220px;

}

}