/* =====================================
   SIGNUP PAGE
===================================== */

.signup-wrapper{
    position:relative;
    z-index:10;
    min-height:calc(100vh - 120px);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 20px;
}

.signup-card{

    width:100%;
    max-width:550px;

    background:rgba(255,255,255,0.12);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,0.15);

    border-radius:24px;

    padding:40px;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.25);

}

.signup-header{
    text-align:center;
    margin-bottom:30px;
}

.signup-header h1{
    font-size:38px;
    margin-bottom:12px;
}

.signup-header p{
    color:#e0e0e0;
    line-height:1.7;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

    color:white;
}

.form-group input{

    width:100%;

    padding:14px 16px;

    border:none;

    border-radius:12px;

    font-size:15px;

    outline:none;
}

.checkbox-group{

    display:flex;

    align-items:center;

    gap:12px;
}

.checkbox-group input{

    width:auto;
}

.signup-btn{

    width:100%;

    border:none;

    padding:15px;

    border-radius:12px;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    background:#ffb300;

    color:#111;

    transition:0.3s;
}

.signup-btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 10px 25px rgba(255,179,0,0.35);
}

.signup-footer{

    margin-top:25px;

    text-align:center;

    color:white;
}

.signup-footer a{

    color:#ffb300;

    text-decoration:none;

    font-weight:700;
}

.alert-message{

    background:rgba(76,175,80,0.2);

    border:1px solid rgba(76,175,80,0.4);

    padding:12px;

    border-radius:10px;

    margin-bottom:20px;
}

.form-errors{

    background:rgba(255,0,0,0.15);

    border:1px solid rgba(255,0,0,0.3);

    color:white;

    padding:12px;

    border-radius:10px;

    margin-bottom:20px;
}

.errorlist{

    list-style:none;

    color:#ffd5d5;

    margin-top:5px;

    font-size:14px;
}

@media(max-width:768px){

    .signup-card{

        padding:25px;
    }

    .signup-header h1{

        font-size:30px;
    }
}


/* =========================================
   CAPTCHA
========================================= */

.captcha-wrapper{

display:flex;
align-items:center;
gap:10px;

}

.captcha-wrapper img{

width:120px;
height:auto;

border-radius:8px;

background:#fff;

padding:4px;

}

.captcha-wrapper input{

flex:1;

}

.captcha-refresh-btn{

width:44px;
height:44px;

border:none;

border-radius:10px;

background:#ffb300;

cursor:pointer;

font-size:18px;

transition:.3s;

}

.captcha-refresh-btn:hover{

transform:rotate(180deg);

box-shadow:0 8px 20px rgba(255,179,0,.35);

}


/* captcha text field */

.captcha-wrapper input[type=text]{

padding:12px;

}