/* Fundo geral da página */
    body {
        margin: 0;
        min-height: 100vh;
        font-family: "Raleway", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
        color: #e5e7eb;
        display: flex;
        align-items: center;
        justify-content: center;
        background: radial-gradient(circle at top left, #4f46e5 0, #111827 40%, #020617 100%);
    }

    /* Container principal do login */
    .login {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px;
    }

    .wrap {
        width: 100%;
        max-width: 1100px;
        background: rgba(15, 23, 42, 0.92);
        border-radius: 24px;
        box-shadow:
            0 25px 50px rgba(0, 0, 0, 0.6),
            0 0 0 1px rgba(148, 163, 184, 0.3);
        display: flex;
        flex-wrap: wrap;
        overflow: hidden;
    }

    .content,
    .user {
        flex: 1 1 320px;
        padding: 32px 32px 40px;
    }

    .content {
        border-right: 1px solid rgba(148, 163, 184, 0.25);
    }

    @media (max-width: 768px) {
        .wrap {
            flex-direction: column;
        }
        .content {
            border-right: none;
            border-bottom: 1px solid rgba(148, 163, 184, 0.25);
        }
    }

    /* Logo */
    .logo img {
        border-radius: 16px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    }

    /* Slideshow */
    #slideshow h2 {
        font-size: 26px;
        font-weight: 700;
        margin: 24px 0 4px;
    }

    #slideshow h2 span {
        background: linear-gradient(135deg, #22c55e, #a3e635);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    #slideshow p {
        margin: 0 0 10px;
        font-size: 14px;
        color: #9ca3af;
    }

    /* Título CPROMED */
    .cpromed-title {
        font-family: 'Aptos Black', Arial, sans-serif;
        font-weight: bold;
        letter-spacing: 3px;
        font-size: 26px;
        display: flex;
        align-items: baseline;
        gap: 4px;
        margin-bottom: 8px;
    }

    .cpromed-title span:first-child {
        font-size: 32px;
    }

    .tabs {
        margin-bottom: 16px;
    }

    .tabs-content {
        margin-top: 8px;
    }

    /* Form de login */
    .login-form .input {
        width: 100%;
        border-radius: 999px;
        border: 1px solid #4b5563;
        padding: 10px 16px;
        background-color: #020617;
        color: #e5e7eb;
        margin-bottom: 12px;
        transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    }

    .login-form .input::placeholder {
        color: #6b7280;
    }

    .login-form .input:focus {
        outline: none;
        border-color: #22c55e;
        background-color: #020617;
        box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.7);
    }

    .btn-login {
        border-radius: 999px;
        font-weight: 600;
        padding: 10px 16px;
        width: 100%;
    }

    .btn-login i {
        margin-right: 6px;
    }

    .btn-acesso-link {
        color: #9ca3af;
        text-decoration: none;
        padding: 0;
        margin-top: 4px;
    }

    .btn-acesso-link:hover {
        color: #22c55e;
        text-decoration: underline;
    }

    /* Modal mais moderno */
    .modal-content {
        background-color: #020617;
        color: #e5e7eb;
        border-radius: 20px;
        border: 1px solid rgba(148, 163, 184, 0.4);
        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.7),
            0 0 0 1px rgba(30, 64, 175, 0.5);
    }

    .modal-header {
        border-bottom-color: rgba(148, 163, 184, 0.3);
    }

    .modal-title {
        font-weight: 600;
        letter-spacing: 0.04em;
    }

    .modal-body {
        padding-top: 16px;
    }

    #cadastroForm {
        background: transparent;
        border: none;
        padding: 0;
    }

    #cadastroForm .form-control,
    #cadastroForm .form-select {
        background-color: #020617;
        border-radius: 12px;
        border: 1px solid #4b5563;
        color: #e5e7eb;
    }

    #cadastroForm .form-control::placeholder {
        color: #6b7280;
    }

    #cadastroForm .form-control:focus,
    #cadastroForm .form-select:focus {
        border-color: #22c55e;
        box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.7);
        background-color: #020617;
    }

    #cadastroForm button[type="submit"] {
        border-radius: 999px;
        padding-left: 28px;
        padding-right: 28px;
        font-weight: 600;
    }