.vukago-register-wrapper{
    max-width:900px;
    margin:60px auto;
    padding:20px;
}

.vukago-register-card{
    background:#ffffff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.vukago-header{
    text-align:center;
    margin-bottom:35px;
}

.vukago-header h1{
    font-size:38px;
    color:#2C6E6E;
    margin-bottom:15px;
    text-align:center;
}

.vukago-subtitle{
    text-align:center;
    color:#666;
    max-width:650px;
    margin:0 auto;
    line-height:1.7;
}

.vukago-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:20px;
}

.vukago-field{
    display:flex;
    flex-direction:column;
}

.vukago-field label{
    font-weight:600;
    margin-bottom:8px;
}

.vukago-field input,
.vukago-field select,
.vukago-field textarea{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
}

.vukago-checkbox{
    margin:25px 0;
}

.vukago-btn{
    background:#2C6E6E;
    color:#fff;
    border:none;
    padding:15px 30px;
    border-radius:10px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
}

@media(max-width:768px){
    .vukago-row{
        grid-template-columns:1fr;
    }

    .vukago-register-card{
        padding:25px;
    }
}