/**
 * Shqela Authentication UI
 */


/* Main Wrapper */

.shqela-auth-wrapper {

    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;

}



/* Card */

.shqela-auth-card {

    width: 100%;
    max-width: 450px;
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);

}



/* Header */

.shqela-auth-header {

    text-align: center;
    margin-bottom: 30px;

}



.shqela-auth-logo {

    width: 70px;
    height: 70px;
    background: #0057ff;
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;

}



.shqela-auth-header h2 {

    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 700;
    color: #111827;

}



.shqela-auth-header p {

    color: #6b7280;
    font-size: 15px;
    margin: 0;

}




/* Form */

.shqela-auth-form {

    width: 100%;

}




/* Fields */

.shqela-field {

    margin-bottom: 20px;

}



.shqela-field label {

    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;

}



.shqela-field input {

    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 15px;
    outline: none;
    transition: 0.3s ease;
    box-sizing: border-box;

}



.shqela-field input:focus {

    border-color: #0057ff;
    box-shadow: 0 0 0 3px rgba(0,87,255,0.12);

}



/* Button */

.shqela-auth-button {

    width: 100%;
    height: 52px;
    background: #0057ff;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;

}



.shqela-auth-button:hover {

    background: #0044cc;
    transform: translateY(-1px);

}




/* Footer */

.shqela-auth-footer {

    text-align: center;
    margin-top: 25px;
    color: #6b7280;
    font-size: 14px;

}



.shqela-auth-footer a {

    color: #0057ff;
    font-weight: 600;
    text-decoration: none;

}



.shqela-auth-footer a:hover {

    text-decoration: underline;

}





/* Message */

.shqela-auth-message {

    max-width: 450px;
    margin: 40px auto;
    padding: 20px;
    background: #f3f4f6;
    border-radius: 12px;
    text-align: center;
    color: #374151;

}





/* Mobile */

@media(max-width:600px){


    .shqela-auth-wrapper {

        padding: 20px 15px;

    }



    .shqela-auth-card {

        padding: 25px 20px;
        border-radius: 16px;

    }



    .shqela-auth-header h2 {

        font-size: 24px;

    }



}