/*
 * Multimedia Technology / FH Salzburg
 * Project: Multimedia Projekt 1 -> Bridgex
 * Author: Mihaela Popadic
 */

/* PAGE */
main{
    min-height:calc(100vh - 80px);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 20px;
}

/* BOX */
.auth-box{
    width:100%;
    max-width:520px;
    background:#fff;
    padding:50px 40px;
    border-radius:6px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

/* TITLES */
.auth-small-title{
    font-size:12px;
    letter-spacing:2px;
    color:#888;
    margin-bottom:10px;
}

.auth-box h1{
    font-family:'League Spartan', sans-serif;
    font-size:44px;
    margin-bottom:10px;
}

.auth-subtitle{
    font-size:14px;
    color:#666;
    line-height:1.6;
    margin-bottom:30px;
}

/* FORM */
.auth-form{
    display:flex;
    flex-direction:column;
    gap:16px;
}

/* LABEL */
.auth-form label{
    font-size:13px;
    font-weight:600;
    color:#333;
}

/* INPUT + SELECT */
.auth-form input,
.auth-form select{
    width:100%;
    padding:14px 16px;
    border:1px solid #ddd;
    border-radius:4px;
    font-size:14px;
    font-family:'Montserrat', sans-serif;
    transition:0.2s ease;
}

/* FOCUS */
.auth-form input:focus,
.auth-form select:focus{
    border-color:#111;
    outline:none;
}

/* ROW */
.form-row{
    display:flex;
    gap:12px;
}

.form-group{
    flex:1;
}

/* BUTTON */
.btn{
    margin-top:10px;
    padding:12px 18px;
    font-size:14px;
    border-radius:6px;
    background:#2b7b8c;
    color:white;
    border:none;
    cursor:pointer;
    transition:0.2s;
}

.btn:hover{
    background:#256874;
}

/* REGISTER TEXT */
.register-link{
    margin-top:25px;
    font-size:14px;
    color:#666;
    text-align:center;
}

.register-link a{
    font-weight:600;
    color:#111;
}

/* RESPONSIVE TABLET */
@media (max-width:800px){
    .auth-box{
        max-width:450px;
        padding:40px 30px;
    }

    .auth-box h1{
        font-size:38px;
    }

    .auth-form input,
    .auth-form select{
        font-size:13px;
        padding:12px;
    }

    .btn{
        font-size:13px;
        padding:10px 16px;
    }
}

/* RESPONSIVE MOBILE */
@media (max-width:600px){
    .form-row{
        flex-direction:column;
    }

    .auth-box{
        padding:30px 20px;
    }

    .auth-box h1{
        font-size:32px;
    }

    .auth-form input,
    .auth-form select{
        font-size:12px;
        padding:10px;
    }

    .btn{
        font-size:12px;
        padding:8px 14px;
    }
}