/* Social Login Buttons */
.social-buttons {
    margin-top: 20px;
}

/* Common styles for social buttons */
.btn-google, .btn-apple {
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-google::before, .btn-apple::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-google:hover::before, .btn-apple:hover::before {
    left: 0;
}

.btn-google:hover, .btn-apple:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    color: white !important;
    text-decoration: none;
}

.btn-google:active, .btn-apple:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Google specific styles */
.btn-google {
    background-color: #db4437;
}

.btn-google:hover {
    background-color: #c53929;
}

/* Apple specific styles */
.btn-apple {
    background-color: #000;
}

.btn-apple:hover {
    background-color: #333;
}

/* Icon styles */
.btn-google i, .btn-apple i {
    font-size: 18px;
    margin-right: 10px;
}

/* Responsive styles for social buttons */
@media (max-width: 768px) {
    .btn-google, .btn-apple {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .social-buttons .row {
        margin: 0 -5px;
    }
    
    .social-buttons .col-md-6 {
        padding: 0 5px;
    }
}

@media (max-width: 480px) {
    .btn-google, .btn-apple {
        font-size: 13px;
        padding: 8px;
    }
    
    .social-buttons h5 {
        font-size: 16px;
    }
}
.separator-with-text {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 15px 0;
    color: #6c757d;
}

    .separator-with-text::before,
    .separator-with-text::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #dee2e6;
    }

    .separator-with-text span {
        padding: 0 10px;
        font-size: 14px;
    }

@media (max-width: 576px) {
    .social-buttons .row {
        margin: 0;
    }

    .social-buttons .col-md-6 {
        padding: 0 5px;
    }
}