﻿:root {
    --primary-blue: #1a73e8;
    --dark-blue: #0d47a1;
    --light-blue: #e8f0fe;
    --ocean-gradient: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    height: 100vh;
    overflow: hidden;
}

.login-container {
    height: 100vh;
}

.ocean-side {
    background: var(--ocean-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.dolphin-container {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    z-index: 2;
}

.dolphin-svg {
    width: 320px;
    height: 180px;
    margin-bottom: 20px;
    animation: dolphinMove 6s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.2)" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    animation: wave 15s linear infinite;
}

.wave2 {
    height: 150px;
    animation: wave2 20s linear infinite;
    opacity: 0.5;
}

.login-side {
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-form {
    max-width: 400px;
    width: 100%;
    padding: 0 20px;
}

.logo {
    width: 180px;
    margin-bottom: 30px;
}

.form-control {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #dfe1e5;
}

    .form-control:focus {
        border-color: var(--primary-blue);
        box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
    }

.btn-login {
    background-color: var(--primary-blue);
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    border: none;
    transition: all 0.3s;
}

    .btn-login:hover {
        background-color: var(--dark-blue);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

.forgot-password {
    color: #5f6368;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

    .forgot-password:hover {
        color: var(--primary-blue);
    }

.bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bubble {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-1000px) translateX(100px);
        opacity: 0;
    }
}

@keyframes wave {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: 1000px;
    }
}

@keyframes wave2 {
    0% {
        background-position-x: 1000px;
    }

    100% {
        background-position-x: 0;
    }
}

@keyframes dolphinMove {
    0%, 100% {
        transform: translateY(0) translateX(-50%);
    }

    50% {
        transform: translateY(-20px) translateX(-50%);
    }
}

.tagline {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Estilos específicos para o SVG do golfinho */
.dolphin-body {
    fill: #ffffff;
    stroke: #0077b6;
    stroke-width: 2;
}

.dolphin-eye {
    fill: #0077b6;
}

.dolphin-mouth {
    fill: none;
    stroke: #0077b6;
    stroke-width: 2;
}

.dolphin-fin {
    fill: #e0f7fa;
    stroke: #0077b6;
    stroke-width: 1.5;
}

@media (max-width: 992px) {
    .ocean-side {
        display: none;
    }

    .login-side {
        padding: 40px;
    }
}
/* Corrige o layout do bootstrap-select com bandeiras */
.bootstrap-select .dropdown-toggle .filter-option img {
    height: 16px; /* tamanho fixo da bandeira */
    width: auto;
    margin-right: 6px; /* espaço entre bandeira e texto */
    vertical-align: middle;
    display: inline-block;
}

.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    display: flex;
    align-items: center;
    gap: 6px; /* espaço consistente */
}

/* Itens dentro da lista suspensa */
.bootstrap-select .dropdown-menu li a img {
    height: 16px;
    width: auto;
    margin-right: 6px;
    vertical-align: middle;
}
