:root{

    --primary:#26b5b3;
    --secondary:#003a89;
    --light:#f6fbfd;
    --border:#dde8f2;
    --text:#444;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

body{

    font-family:Arial, Helvetica, sans-serif;
    color:var(--text);

}

.career-page{

    padding:70px 20px;
    background:#f7fbff;

}

.career-container{

    max-width:1350px;
    margin:auto;

    display:grid;
    grid-template-columns:420px 1fr;
    gap:40px;

}

.career-info{

    background:linear-gradient(135deg,#26b5b3,#003a89);

    color:#fff;

    padding:45px;
    border-radius:20px;

    position:sticky;
    top:100px;

    height:fit-content;

}

.badge{

    background:#fff;
    color:#003a89;

    padding:8px 18px;

    border-radius:50px;

    display:inline-block;

    font-weight:600;
    margin-bottom:25px;

}

.career-info h1{

    font-size:42px;
    margin-bottom:20px;

}

.career-info p{

    line-height:1.8;
    margin-bottom:35px;

}

.point{

    margin-bottom:18px;
    font-size:16px;

}

.career-form{

    background:#fff;

    padding:40px;

    border-radius:20px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.career-form h2{

    color:#003a89;
    margin-bottom:30px;

}

.grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;

}

.form-group{

    margin-bottom:22px;

}

.form-group label{

    display:block;
    margin-bottom:8px;
    font-weight:600;

}

.form-group input,
.form-group select,
.form-group textarea{

    width:100%;

    padding:14px 16px;

    border:1px solid var(--border);

    border-radius:10px;

    font-size:15px;

    transition:.3s;

    background:#fff;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:0 0 0 3px rgba(38,181,179,.15);

}

textarea{

    resize:vertical;

}

.submit-btn{

    width:100%;

    padding:16px;

    border:none;

    border-radius:12px;

    background:linear-gradient(90deg,#26b5b3,#003a89);

    color:#fff;

    font-size:17px;

    cursor:pointer;

    transition:.3s;

}

.submit-btn:hover{

    transform:translateY(-2px);

    box-shadow:0 10px 25px rgba(0,58,137,.25);

}

/* Tablet */

@media(max-width:991px){

.career-container{

    grid-template-columns:1fr;

}

.career-info{

    position:relative;
    top:0;

}

}

/* Mobile */

@media(max-width:768px){

.grid{

    grid-template-columns:1fr;

}

.career-form{

    padding:25px;

}

.career-info{

    padding:30px;

}

.career-info h1{

    font-size:32px;

}

}

/* Small Mobile */

@media(max-width:480px){

.career-page{

    padding:40px 15px;

}

.career-form{

    padding:20px;

}

.career-info{

    padding:25px;

}

.career-info h1{

    font-size:28px;

}

.submit-btn{

    font-size:16px;

}

}