.auth-section {
    padding: 80px 0;
    background: #0F0F0F;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.auth-container {
    display: flex;
    width: 100%;
    max-width: 1100px;
    background: #1C1C1C;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
}
.auth-image {
    flex: 1;
    background-image: url('images/registration_bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: none;
}
@media (min-width: 992px) {
    .auth-image {
        display: block;
    }
}
.auth-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(28, 28, 28, 0.8), transparent);
}
.auth-form-container {
    flex: 1;
    padding: 40px;
    max-width: 500px;
    margin: auto;
}
.auth-header h1 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 28px;
    line-height: 30px;
}
.auth-header p {
    color: #9FA1A4;
    margin-bottom: 32px;
}
.auth-btn {
    background: #efb827;
    color: #1C1C1C;
    border: none;
    padding: 14px;
    font-weight: 700;
    border-radius: 12px;
    transition: transform 0.2s;
    width: 100%;
    display: block;
    text-align: center;
}
.auth-btn:hover {
    transform: translateY(-2px);
    background: #f4c444;
}
.text-primary {
    color: #efb827 !important;
}
.iti {
    width: 100% !important;
}
