/* =========================================
   RESET
========================================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* =========================================
   GLOBAL
========================================= */
html,
body{
    min-height:100%;
    overflow-x:hidden;
    overflow-y:auto;
    font-family:'Segoe UI', sans-serif;
}

body{
    background:linear-gradient(135deg, #f5f7fa, #e4e7eb);
}

/* =========================================
   PAGE LAYOUT
========================================= */
.page-wrapper{
    min-height:100vh;
    display:flex;
    flex-direction:column;
}

/* =========================================
   NAVBAR
========================================= */
.navbar{
    height:65px;
    flex-shrink:0;
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.logo{
    height:40px;
    width:auto;
}

/* =========================================
   MAIN CONTENT
========================================= */
.main-content{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:15px;
}

/* =========================================
   AUTH CARD
========================================= */
.auth-card{
    width:100%;
    max-width:420px;
    padding:25px;
    border-radius:15px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* =========================================
   FORM ELEMENTS
========================================= */
.form-control{
    padding:10px 14px;
    border-radius:10px;
}

.btn-dark{
    padding:10px;
    border-radius:10px;
    font-weight:600;
}

/* =========================================
   FOOTER
========================================= */
.footer{
    height:50px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:0.85rem;
    background:#fff;
    border-top:1px solid #eee;
}
/* =========================================
   verify
========================================= */

.verify-wrapper{
    min-height:100vh;
    display:flex;
    flex-direction:column;
}

/* =========================================
   NAVBAR
========================================= */

.verify-navbar{
    height:70px;
    background:#ffffff;
    display:flex;
    align-items:center;
    padding:0 20px;
    box-shadow:0 2px 15px rgba(0,0,0,0.05);
}

.verify-logo{
    height:42px;
}

/* =========================================
   MAIN
========================================= */

.verify-main{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}

/* =========================================
   CARD
========================================= */

.verify-card{
    width:100%;
    max-width:430px;
    background:#ffffff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

/* =========================================
   ICON
========================================= */

.verify-icon{
    width:85px;
    height:85px;
    margin:auto;
    border-radius:50%;
    background:#eef5ff;
    color:#0d6efd;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
}

/* =========================================
   TYPOGRAPHY
========================================= */

.verify-title{
    font-size:28px;
    font-weight:700;
    color:#111111;
}

.verify-text{
    color:#666666;
    font-size:15px;
    line-height:1.7;
}

/* =========================================
   INPUT
========================================= */

.verify-input{
    height:55px;
    border-radius:14px;
    border:1px solid #dfe3e8;
    text-align:center;
    font-size:24px;
    font-weight:700;
    letter-spacing:8px;
}

.verify-input:focus{
    border-color:#0d6efd;
    box-shadow:none;
}

/* =========================================
   BUTTONS
========================================= */

.verify-btn{
    height:52px;
    border:none;
    border-radius:14px;
    font-weight:600;
    background:#111111;
    color:#ffffff;
    transition:0.3s ease;
}

.verify-btn:hover{
    background:#000000;
}

.resend-btn{
    border:none;
    background:none;
    color:#0d6efd;
    font-weight:600;
} 

/* =========================================
   FOOTER
========================================= */

.verify-footer{
    background:#ffffff;
    border-top:1px solid #eeeeee;
    padding:18px 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    font-size:14px;
    color:#666666;
}

.verify-footer-left{
    font-weight:500;
}

.verify-footer-right{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:20px;
    margin-left:auto;
}

.verify-footer a{
    text-decoration:none;
    color:#0d6efd;
    transition:0.3s ease;
    white-space:nowrap;
}

.verify-footer a:hover{
    color:#084298;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:576px){

    .verify-footer{
        flex-direction:column;
        align-items:center;
        gap:12px;
        text-align:center;
    }

    .verify-footer-right{
        margin-left:0;
        justify-content:center;
    }

}
/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:576px){

    .verify-card{
        padding:25px;
    }

    .verify-title{
        font-size:24px;
    }

    .verify-input{
        font-size:20px;
        letter-spacing:5px;
    }
}

.profile-wrapper{
    padding:40px 15px 90px;
}

.profile-card{
    background:#fff;
    border-radius:24px;
    padding:40px;
    box-shadow:0 10px 40px rgba(0,0,0,0.05);
    border:1px solid #edf1f5;
}

.profile-preview{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #f3f6fb;
}

.upload-btn{
    position:relative;
    overflow:hidden;
    display:inline-block;
}

.upload-btn input{
    position:absolute;
    opacity:0;
    width:100%;
    height:100%;
    left:0;
    top:0;
    cursor:pointer;
}

.form-control{
    height:52px;
    border-radius:14px;
    border:1px solid #dfe5ee;
}

textarea.form-control{
    height:auto;
    resize:none;
}

.form-control:focus{
    box-shadow:none;
    border-color:#0d6efd;
}

.form-label{
    font-weight:600;
    margin-bottom:10px;
}

.progress{
    height:10px;
    border-radius:50px;
}

.progress-bar{
    border-radius:50px;
}

.skill-box{
    background:#f5f7fa;
    padding:12px 16px;
    border-radius:12px;
    font-size:14px;
    display:inline-block;
    margin:5px;
}

.continue-btn{
    height:56px;
    border-radius:50px;
    font-weight:600;
    font-size:16px;
}

@media(max-width:768px){

    .profile-card{
        padding:25px;
        border-radius:18px;
    }

}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-height:650px){

    .auth-card{
        padding:18px;
    }

    h3{
        font-size:1.2rem;
    }

    p{
        font-size:0.85rem;
    }
}