.auth-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.auth-tabs {
    border-bottom: 2px solid #dee2e6;
    margin-bottom: 50px;
}

.auth-tabs .nav-link {
    color: #646566;
    font-weight: 500;
    padding: 15px 30px;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.auth-tabs .nav-link.active {
    color: #000;
    border-bottom: 2px solid #000;
}

.auth-form {
    max-width: 400px;
    margin: 30px auto;
    padding: 20px;
}

.form-control {
    padding: 12px;
    margin-bottom: 20px;
}

.btn-auth {
    width: 100%;
    padding: 12px;
    border: 1px solid black;
    color: black;
    font-weight: 500;
    margin-top: 10px;
}

.btn-auth:hover {
    transition: all 0.5s ease;
    background-color: #4a4b4c;
    color: white;
}

.social-login {
    text-align: center;
    margin-top: 30px;
}

.social-btn {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #dee2e6;
    background: white;
    font-weight: 500;
}

.divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.divider::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #dee2e6;
}

.divider::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #dee2e6;
}

.form-check {
    margin-bottom: 20px;
}

.auth-form .mb-3:first-child {
    margin-top: 20px;
} 