@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #333;
}

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

.auth-logo {
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-control {
    padding: 10px;
    border-radius: 6px;
}

.btn-dark {
    padding: 10px;
    font-weight: 500;
    border-radius: 6px;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1rem 0;
    font-size: 14px;
    color: #aaa;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #eaeaea;
    margin: 0 10px;
}

.social-btn {
    width: 100%;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #eaeaea;
    background: #fff;
    margin-bottom: 8px;
}

.social-btn img {
    height: 18px;
    width: 18px;
    margin-right: 8px;
    vertical-align: middle;
}

a {
    text-decoration: none;
    color: #000;
}

a:hover {
    text-decoration: underline;
}
