   /* SEU CSS ORIGINAL - NADA FOI ALTERADO */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            height: 100vh;
            display: flex;
            overflow: hidden;
        }

        .container {
            display: flex;
            width: 100%;
            height: 100vh;
        }

        /* Lado esquerdo - Formulário */
        .left-side {
            flex: 1;
            background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 60px;
            position: relative;
        }

        .logo {
            position: absolute;
            top: 40px;
            left: 60px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            width: 48px;
            height: 48px;
            background: #4A90E2;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .logo-text .hospital {
            color: #4A90E2;
            font-weight: 600;
            font-size: 16px;
        }

        .logo-text .name {
            color: #4A90E2;
            font-weight: 400;
            font-size: 14px;
        }

        .form-container {
            max-width: 420px;
            margin: 0 auto;
            width: 100%;
        }

        h1 {
            font-size: 32px;
            color: #2c3e50;
            margin-bottom: 12px;
            font-weight: 400;
        }

        .subtitle {
            color: #7f8c8d;
            margin-bottom: 40px;
            font-size: 15px;
        }

        .form-group {
            margin-bottom: 24px;
        }

        label {
            display: block;
            color: #95a5a6;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .password-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .forgot-password {
            color: #95a5a6;
            font-size: 13px;
            text-decoration: none;
            transition: color 0.3s;
        }

        .forgot-password:hover {
            color: #4A90E2;
        }

        input[type="email"],
        input[type="password"],
        input[type="text"] {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid #dfe6e9;
            border-radius: 8px;
            font-size: 15px;
            background: white;
            transition: all 0.3s;
            color: #2c3e50;
        }

        input[type="email"]:focus,
        input[type="password"]:focus,
        input[type="text"]:focus {
            outline: none;
            border-color: #4A90E2;
            box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
        }

        /* Container para senha com ícone */
        .password-input-container {
            position: relative;
        }

        .password-input-container input {
            padding-right: 45px;
        }

        .toggle-password {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            color: #95a5a6;
            font-size: 18px;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .toggle-password:hover {
            color: #4A90E2;
        }

        .btn-login {
            width: 100%;
            padding: 14px;
            background: #4A90E2;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 32px;
        }

        .btn-login:hover {
            background: #357ABD;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
        }

        .btn-login:active {
            transform: translateY(0);
        }

        .register-link {
            text-align: center;
            margin-top: 24px;
            font-size: 14px;
            color: #7f8c8d;
        }

        .register-link a {
            color: #4A90E2;
            text-decoration: none;
            font-weight: 500;
            margin-left: 4px;
        }

        .register-link a:hover {
            text-decoration: underline;
        }

        /* Lado direito - Imagem */
        .right-side {
            flex: 1;
            background: linear-gradient(135deg, #5B7FC9 0%, #6B8DD6 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .illustration-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        /* Círculos decorativos de fundo */
        .bg-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            z-index: 0;
        }

        .bg-circle-1 {
            width: 500px;
            height: 500px;
            top: -150px;
            right: -150px;
        }

        .bg-circle-2 {
            width: 350px;
            height: 350px;
            bottom: -100px;
            left: -100px;
        }

        .bg-circle-3 {
            width: 250px;
            height: 250px;
            top: 40%;
            left: 20%;
        }

        @media (max-width: 968px) {
            .container {
                flex-direction: column;
            }

            .right-side {
                display: none;
            }

            .left-side {
                padding: 40px 20px;
            }

            .logo {
                left: 20px;
                top: 20px;
            }
        }