﻿:root {
    --primary-color: #242B57; /* Pantone 103-16 C */
    --secondary-color: #007EAD; /* Pantone 112-6 C */
    --accent-color: #EAB93E; /* Pantone 14-7 C */
    --gray-color: #949494; /* Pantone 178-9 C */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --shadow: 0 4px 6px rgba(36, 43, 87, 0.1);
    --shadow-lg: 0 10px 25px rgba(36, 43, 87, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow-x: hidden;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: -1;
}

.animated-bg-element {
    position: fixed;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

    .animated-bg-element:nth-child(1) {
        width: 200px;
        height: 200px;
        top: 10%;
        left: 10%;
        animation-delay: 0s;
    }

    .animated-bg-element:nth-child(2) {
        width: 150px;
        height: 150px;
        top: 60%;
        right: 20%;
        animation-delay: 2s;
    }

    .animated-bg-element:nth-child(3) {
        width: 100px;
        height: 100px;
        bottom: 20%;
        left: 30%;
        animation-delay: 4s;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.footer {
    background: var(--primary-color);
    color: white;
    border-top: 3px solid var(--accent-color);
    position: relative;
    padding: 5px 0;
}

    .footer .container {
        position: relative;
        z-index: 1;
    }

.footer {
    transition: all 0.3s ease;
}

.toast-success {
    background-color: var(--secondary-color);
}

.toast-info {
    background-color: var(--primary-color);
}

.toast-warning {
    background-color: var(--accent-color);
}

.swal2-popup {
    border-radius: 16px;
    border: 2px solid var(--accent-color);
}

.swal2-confirm {
    background-color: var(--secondary-color) !important;
    border-radius: 8px;
}

.swal2-cancel {
    background-color: var(--gray-color) !important;
    border-radius: 8px;
}
