﻿body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0f2f5;
    color: #333;
}

.bg-myaloha-red {
    background-color: #b91c1c;
}

.text-myaloha-red {
    color: #b91c1c;
}

.container-custom {
    max-width: 1140px;
    margin: 0 auto;
}

.navbar-shadow {
    box-shadow: 0 2px 4px rgba(0,0,0,.08);
}

.btn-auth-login {
    color: #b91c1c;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-auth-register {
    background-color: #b91c1c;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 4px;
    transition: all 0.2s;
}

.modal-enter {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.form-input {
    width: 100%;
    padding: 10px 12px;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s;
}

    .form-input:focus {
        outline: none;
        border-color: #b91c1c;
        box-shadow: 0 0 0 2px rgba(185, 28, 28, 0.1);
    }

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #4b5563;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.bg-myaloha-navy {
    background-color: #004a99;
}

.text-myaloha-navy {
    color: #004a99;
}

.container-custom {
    max-width: 1140px;
    margin: 0 auto;
}
/* Navbar Styles */
.navbar-shadow {
    box-shadow: 0 2px 4px rgba(0,0,0,.08);
}
/* Button Styles */
.btn-contest-primary {
    background-color: #ffc107;
    color: #212529;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.2s;
}

    .btn-contest-primary:hover {
        background-color: #e0a800;
        transform: translateY(-1px);
    }

.btn-contest-outline {
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
}
/* Auth Buttons */
.btn-auth-login {
    color: #004a99;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.2s;
}

    .btn-auth-login:hover {
        background-color: #f8f9fa;
    }

.btn-auth-register {
    background-color: #004a99;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,74,153,0.2);
    transition: all 0.2s;
}

    .btn-auth-register:hover {
        background-color: #003d80;
        box-shadow: 0 4px 8px rgba(0,74,153,0.3);
    }
/* Timer Styles */
.timer-card {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timer-number {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 50px;
    font-weight: 900;
    width: 65px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-bottom: 5px;
}

.timer-label {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
}
/* Content Card Styles */
.card-main {
    background: #fff;
    border-radius: 5px;
    border: 1px solid #dee2e6;
    margin-bottom: 20px;
}

.card-header-custom {
    padding: 12px 20px;
    border-bottom: 1px solid #dee2e6;
    background-color: #f8f9fa;
    font-weight: 700;
    color: #495057;
    font-size: 14px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}
