/*!
|--------------------------------------------------------------------------
| HomeTutorMarketplace
| Authentication Styles
|--------------------------------------------------------------------------
*/

body {
    background: #f4f7fb;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #343a40;
}

.auth-logo {
    width: 120px;
    height: auto;
}

.auth-card {
    border-radius: 15px;
    overflow: hidden;
}

.auth-card .card-body {
    padding: 2.5rem;
}

.form-control,
.form-select {
    height: 50px;
    border-radius: 10px;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: #0d6efd;
}

.btn-auth {
    height: 50px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
}

.auth-link {
    text-decoration: none;
    font-weight: 600;
}

.auth-link:hover {
    text-decoration: underline;
}

.required {
    color: #dc3545;
}

@media (max-width: 576px) {

    .auth-card .card-body {
        padding: 1.5rem;
    }

    .auth-logo {
        width: 90px;
    }

}