/* 
 * Auth Buttons CSS for Cabal Russia
 * Contains specific styles for login and register buttons
 */

@import 'variables.css';

/* Login Button Style */
.login_button {
    background-color: transparent;
    border: 2px solid var(--color-accent-secondary);
    color: var(--color-accent-secondary);
    font-weight: 700;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0.6rem 1.5rem;
    box-shadow: 0 0 10px rgba(62, 138, 255, 0.1);
    z-index: 1;
    display: inline-block;
    text-align: center;
}

.login_button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--color-accent-secondary);
    transition: all 0.3s ease;
    z-index: -1;
}

.login_button:hover {
    color: var(--color-text-primary);
    box-shadow: 0 0 15px rgba(62, 138, 255, 0.3);
    transform: translateY(-2px);
}

.login_button:hover:before {
    width: 100%;
}

/* Register Button Style */
.register_button {
    background-color: var(--color-accent-primary);
    color: var(--color-text-primary);
    font-weight: 700;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0.6rem 1.5rem;
    box-shadow: 0 0 10px rgba(255, 62, 62, 0.1);
    z-index: 1;
    display: inline-block;
    text-align: center;
}

.register_button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #ff5252;
    transition: all 0.3s ease;
    z-index: -1;
}

.register_button:hover {
    color: var(--color-text-primary);
    box-shadow: 0 0 15px rgba(255, 62, 62, 0.3);
    transform: translateY(-2px);
}

.register_button:hover:before {
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .login_button,
    .register_button {
        padding: 0.4rem 1rem;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .login_button,
    .register_button {
        padding: 0.3rem 0.8rem;
        font-size: 13px;
    }
} 