:root {
    --primary-color: #3A222F;
    --accent-color: #DA8431;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.form-container {
    position: relative;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 20px;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 400px;
    height: 400px;
    background: url('../images/dancer-watermark.png') no-repeat center center;
    background-size: contain;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
}

.btn {
    background-color: var(--primary-color);
    color: var(--accent-color);
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn:hover {
    opacity: 0.9;
}

.login-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.login-logo {
    display: block;
    margin: 0 auto 20px;
    max-width: 200px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

#data_nascimento {
    width: auto;
    min-width: 200px;
}

/* Sidebar Styles */
.sidebar {
    width: 250px;
    height: 100vh;
    background-color: var(--primary-color);
    position: fixed;
    left: 0;
    top: 0;
    padding: 20px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.sidebar-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.sidebar-logo {
    max-width: 150px;
    height: auto;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 30px;
    cursor: pointer;
}

.sidebar-menu {
    list-style: none;
}

.menu-section-title {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    text-transform: uppercase;
    margin: 15px 0 5px 10px;
    font-weight: bold;
    letter-spacing: 1px;
}

.sidebar-menu li {
    margin-bottom: 5px;
}

.sidebar-menu a {
    color: var(--accent-color);
    text-decoration: none;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.sidebar-menu a:hover {
    background-color: rgba(218, 132, 49, 0.1);
    color: #fff;
    transform: translateX(5px);
}

.sidebar-menu .icon {
    margin-right: 10px;
    font-size: 18px;
}

.badge-new {
    background-color: #28a745;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: auto;
}

.main-content {
    margin-left: 250px;
    padding: 30px;
    transition: margin-left 0.3s ease;
}

/* Dashboard Stats Cards */
.dashboard-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    border-radius: 10px;
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card.primary {
    background-color: var(--primary-color);
}

.stat-card.accent {
    background-color: var(--accent-color);
}

.stat-card.success {
    background-color: #28a745;
}

.stat-card.info {
    background-color: #17a2b8;
}

.stat-card.warning {
    background-color: #ffc107;
    color: #333;
    /* Dark text for better contrast on yellow */
}

.stat-card .icon {
    font-size: 3em;
    margin-right: 20px;
    opacity: 0.8;
}

.stat-card .info h3 {
    margin: 0;
    font-size: 1.1em;
    opacity: 0.9;
    font-weight: normal;
}

.stat-card .info .number {
    margin: 5px 0;
    font-size: 2em;
    font-weight: bold;
}

.stat-card .info .desc {
    margin: 0;
    font-size: 0.8em;
    opacity: 0.8;
}

/* Responsividade */
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 10px 20px;
        display: block;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .sidebar-header {
        justify-content: space-between;
        margin-bottom: 0;
    }

    .sidebar-logo {
        max-width: 100px;
        margin: 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .sidebar-menu {
        display: none;
        /* Hide default on mobile */
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 10px;
    }

    .sidebar-menu.active {
        display: block;
        /* Show when active */
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .menu-section-title {
        margin-top: 10px;
    }

    .main-content {
        margin-left: 0;
        padding: 15px;
    }

    .form-container {
        margin: 10px 0;
    }

    /* Login responsive fixes */
    .login-container {
        margin: 50px 20px;
    }
}